inital commit
[pharext/pharext.org] / app / views / layout.phtml
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>
6 <?php if (!empty($title)) : ?>
7 <?= $this->e($title) ?>
8 <?php endif; ?>
9 PHARext
10 </title>
11 <meta name="viewport" content="width=device-width, initial-scale=1">
12 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
13 <link rel="stylesheet" href="<?= $baseUrl->mod("./octicons/octicons.css") ?>">
14 <link rel="stylesheet" href="<?= $baseUrl->mod("./index.css") ?>">
15 </head>
16 <body>
17 <?php include "navbar.phtml" ?>
18 <div id="content" class="<?= (isset($container) && !$container) ? "":"container" ?>">
19
20 <?= $this->section("content") ?>
21
22 </div>
23 <footer class="footer">
24 <div class="container">
25 <p>
26 &copy; 2015 m6w6, Michael Wallner — Powered by <a href="//github.com/m6w6/pharext">pharext
27 <?php
28 include_once __DIR__."/../../vendor/m6w6/pharext/src/pharext/Version.php";
29 echo pharext\VERSION;
30 ?>
31 </a>
32 </p>
33 </div>
34 </footer>
35 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
36 <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
37 </body>
38 </html>