summaryrefslogtreecommitdiffstats
path: root/common/admin/template.php
blob: 7818befd424810ade8e32db8a264232b319c1b83 (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
45
46
47
48
49
50
51
52
53
<?php if(!isset($admin_access)) return; ?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>

<?php
    echo _g('Administration') . ' — ';
    printf(_g('moonmoon %s', '%s is the version number for moonmoon, this string appears as the tab title in the admin panel'), $moon_version);
?>
    </title>
    <link rel="stylesheet" media="screen" type="text/css" href="default.css">
<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

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

</head>

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

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

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

        <?php endif; ?>



        <div id="content">

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

        </div>
    </div>

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

</body>
</html>