summaryrefslogtreecommitdiffstats
path: root/admin/template.php
blob: 2c95d5b32de5254d4182c315b937fc0ca1db7c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php if(!isset($admin_access)) return; ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/HTML; charset=UTF-8" />
    <meta http-equiv="Content-Script-Type" content="text/javascript" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
    <meta http-equiv="Content-Language" content="en" />

    <title>moonmoon administration</title>
    <link rel="stylesheet" media="screen" type="text/css" href="default.css" />
    <?=@$header_extra ?: ''; ?>
</head>

<body id="<?=@$page_id ?: ''; ?>">
    <div id="page">
        <div id="header">
            <h1>moonmoon</h1>
            <p><a href="../">Back to main page</a></p>
        </div>

        <?php if($admin_access == 1) : ?>

        <p class="logout"><a href="logout.php">Logout</a></p>
        <ul id="nav">
            <li id="nav-feed"><a href="index.php">Feeds</a></li>
            <li id="nav-admin"><a href="administration.php">Administration</a></li>
        </ul>

        <?php endif; ?>

        <div id="content">

        <?=@$page_content ?: ''; ?>

        </div>
    </div>

<?=@$footer_extra ?: ''; ?>

</body>
</html>