diff options
Diffstat (limited to 'themes/blue/theme.php')
-rw-r--r-- | themes/blue/theme.php | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/themes/blue/theme.php b/themes/blue/theme.php index 0ce4cfd..fbec1e7 100644 --- a/themes/blue/theme.php +++ b/themes/blue/theme.php @@ -1,40 +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 +<!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> |