Merge remote-tracking branch 'refs/remotes/origin/master'
[mdref/mdref] / views / layout.phtml
index 994f7f49c06d905550b16447eedf0604e7f0fd42..43463ca9f7a5c61328870298921972cceeb76395 100644 (file)
@@ -3,7 +3,7 @@
        <head>
                <meta charset="utf-8">
                <title>
-                       <?php if (isset($title)) : ?>
+                       <?php if ($title) : ?>
                                <?= $title ?> - mdref
                        <?php else: ?>
                                mdref
                <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
        </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 include __DIR__."/sidebar.phtml" ?>
                
-               <?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; ?>
+               <?php if (isset($html)) : ?>
+                       <?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>
 
                <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>
+                       <?php include __DIR__."/footer.phtml" ?>
                </footer>
                <script src="index.js"></script>
        </body>