repo-template
[mdref/mdref] / views / layout.phtml
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>
6 <?php if (!empty($title)) : ?>
7 <?= $title ?> -
8 <?php elseif (isset($entry)) : ?>
9 <?= $entry ?> -
10 <?php endif; ?>
11 mdref
12 </title>
13 <?php if (isset($baseUrl)) : ?>
14 <base href="<?= $baseUrl ?>">
15 <meta http-equiv="Content-Location" content="<?= $baseUrl . $ref ?>">
16 <link rel="stylesheet" href="index.css">
17 <?php endif; ?>
18
19 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
20 <link rel="shortcut icon" href="<?= $baseUrl . "favicon.ico" ?>">
21 </head>
22 <body>
23 <div class="page">
24 <?php include __DIR__."/sidebar.phtml" ?>
25 <?php if (isset($exception)) : ?>
26 <?= \mdref\ExceptionHandler::htmlException($exception) ?>
27 <?php elseif (isset($entry)) : ?>
28 <?php include __DIR__."/mdref.phtml" ?>
29 <?php else: ?>
30 <?php include __DIR__."/index.phtml" ?>
31 <?php endif; ?>
32
33 <?php if (@$_SERVER["SERVER_NAME"] != "localhost") : ?>
34 <div id="disqus_thread"></div>
35 <script>
36 var disqus_shortname = 'mdref';
37 var disqus_identifier = '<?=$ref?>';
38 (function() {
39 var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
40 dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
41 (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
42 })();
43 </script>
44 <?php endif; ?>
45
46 <footer>
47 <?php include __DIR__."/footer.phtml" ?>
48 </footer>
49 <?php if (isset($baseUrl)) : ?>
50 <script src="index.js"></script>
51 <?php endif; ?>
52 </div>
53 </body>
54 </html>