summaryrefslogtreecommitdiffstats
path: root/themes/blue/theme.php
blob: fbec1e7cb300e5b916f8dfd3a9bfd378868101d1 (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
<!doctype html>
<html lang="en">
<head>
<?php
  echo "	<meta charset='utf-8'>
	<title>" . $c['title'] . " - " . $c['page'] . "</title>
	<base href='$hostname'>
	<link rel='stylesheet' href='themes/" . $c['theme_name'] . "/style.css'>
	<script src='js/jquery-2.1.1.min.js'></script>
	<meta name='description' content='" . $c['description'] . "'>
	<meta name='keywords' content='" . $c['keywords'] . "'>";
  edit_tags();
?>
</head>
<body>
<header>
  <nav id="nav">
    <h1 id="main-title"><a href='./'><?php echo $c['title']; ?></a></h1>
    <ul>
      <?php menu("<li><a", "</a></li>"); ?>
    </ul>
  </nav>
</header>
<?php if (is_loggedin()) settings(); ?>

<div class="clear"></div>
<div id="wrapper" class="border">
  <?php content($c['page'], $c['content']); ?>

</div>

<div id="side" class="border">
  <?php content('subside', $c['subside']); ?>

</div>

<div class="clear"></div>
<footer><p><?php echo $c['copyright'] . " | $sig | $lstatus"; ?></p></footer>
</body>
</html>