summaryrefslogtreecommitdiffstats
path: root/themes/blue/theme.php
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blue/theme.php')
-rw-r--r--themes/blue/theme.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/themes/blue/theme.php b/themes/blue/theme.php
new file mode 100644
index 0000000..0ce4cfd
--- /dev/null
+++ b/themes/blue/theme.php
@@ -0,0 +1,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> \ No newline at end of file