load disqus only on request
[mdref/mdref] / views / layout.phtml
index 994f7f49c06d905550b16447eedf0604e7f0fd42..e49d520fe8a9c66509d00ab6f77c69bc9e85ac31 100644 (file)
@@ -3,73 +3,50 @@
        <head>
                <meta charset="utf-8">
                <title>
-                       <?php if (isset($title)) : ?>
-                               <?= $title ?> - mdref
-                       <?php else: ?>
-                               mdref
+                       <?php if (!empty($title)) : ?>
+                               <?= $title ?> -
+                       <?php elseif (isset($entry)) : ?>
+                               <?= $entry ?> -
                        <?php endif; ?>
+                       mdref
                </title>
-               <base href="<?= $baseUrl ?>">
-               <link rel="stylesheet" href="index.css">
-               <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
+               <meta name="viewport" content="width=1200, initial-scale=0.5">
+               <?php if (isset($baseUrl)) : ?>
+                       <base href="<?= $baseUrl ?>">
+                       <meta http-equiv="Content-Location" content="<?= $baseUrl . $ref ?>">
+                       <link rel="stylesheet" href="index.css">
+               <?php endif; ?>
+
+               <link href="https://fonts.googleapis.com/css?family=Inconsolata&amp;subset=latin-ext" rel="stylesheet">
+               <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
+               <link rel="shortcut icon" href="<?= $baseUrl . "favicon.ico" ?>">
        </head>
        <body>
-               <?php if (isset($listing)) : ?>
-               <div class="sidebar">
-                       <ul>
-                               <li>&lsh; <a href="">Home</a></li>
-                               <?php if (($entry = $listing->getParent())) : ?>
-                                       <li>&uarr; <a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></li>
-                               <?php endif; ?>
-                               <?php if (($entry = $listing->getSelf()) && ($link = $entry->formatLink())) : ?>
-                                       <ul><li>&circlearrowright; <?= $link ?>
-                               <?php endif; ?>
-                               <?php if (count($listing)) : ?>
-                                       <ul>
-                                               <?php foreach ($listing as $entry) : ?>
-                                               <li>&rdsh; <a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></li>
-                                               <?php endforeach; ?>
-                                       </ul>
-                               <?php endif; ?>
-                               <?php if (strlen($listing)) : ?>
-                                       </li></ul>
-                               <?php endif; ?>
-                       </ul>
-               </div>
-               <?php endif; ?>
-               
-               <?php if (isset($markdown)) : ?>
-                       <?= $markdown ?>
-                       <?php if (isset($sublisting) && count($sublisting)) : ?>
-                               <h2>Functions:</h2>
-                               <ul>
-                               <?php foreach($sublisting as $entry) : ?>
-                                       <li>
-                                               <h3><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink(true)?></a></h3>
-                                               <p><?=$entry->readDescription()?></p>
-                                               <p><?=$entry->readTitle()?></p>
-                                       </li>
-                               <?php endforeach; ?>
-                               </ul>
-                       <?php endif; ?>
+               <div class="page">
+               <?php include __DIR__."/sidebar.phtml" ?>
+               <?php if (isset($exception)) : ?>
+                       <?= \mdref\ExceptionHandler::htmlException($exception) ?>
+               <?php elseif (isset($entry)) : ?>
+                       <?php include __DIR__."/mdref.phtml" ?>
                <?php else: ?>
-                       <h1>mdref-v<?php readfile("../VERSION"); ?></h1>
-                       <?php if (isset($exception)) : ?>
-                               <?=\mdref\ExceptionHandler::html($exception, ["h2"], ["p"], ["pre", "style='overflow-x:scroll'"]); ?>
-                       <?php else : ?>
-                               <pre><?= htmlspecialchars(file_get_contents("../LICENSE")); ?></pre>
-                       <?php endif; ?>
+                       <?php include __DIR__."/index.phtml" ?>
                <?php endif; ?>
 
-               <div id="disqus_thread"></div>
+                       <div id="disqus_thread"><button id="disqus_activator">Show <span> </span> Comment(s)</button></div>
+                       <script>
+                               var disqus_shortname = 'mdref';
+                               var disqus_identifier = '<?=$ref?>';
+                       </script>
 
-               <footer>
-                       <ul>
-                               <li><a href="https://github.com/m6w6/mdref">mdref-v<?php readfile("../VERSION") ?></a></li>
-                               <li><a href="LICENSE">&copy; <?= implode("-", array_unique([2013, idate("Y")])) ?>
-                                       All rights reserved.</a></li>
-                       </ul>
-               </footer>
-               <script src="index.js"></script>
+                       <footer>
+                               <?php include __DIR__."/footer.phtml" ?>
+
+                       </footer>
+               <?php if (isset($baseUrl)) : ?>
+
+                       <script src="index.js"></script>
+               <?php endif; ?>
+
+               </div>
        </body>
 </html>