fix #1; upgrade jquery
[mdref/mdref] / views / layout.phtml
index 3bd409c8dff46595a13aba2a4dc2fdef9ac295ba..f3bcbf792e8a0a1da0794319f39d42dd6a5f19fd 100644 (file)
@@ -5,27 +5,49 @@
                <title>
                        <?php if (!empty($title)) : ?>
                                <?= $title ?> -
+                       <?php elseif (isset($entry)) : ?>
+                               <?= $entry ?> -
                        <?php endif; ?>
-                               mdref
+                       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>
+               <?php if (isset($baseUrl)) : ?>
+                       <base href="<?= $baseUrl ?>">
+                       <meta http-equiv="Content-Location" content="<?= $baseUrl . $ref ?>">
+                       <link rel="stylesheet" href="index.css">
+               <?php endif; ?>
+               
+               <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
        </head>
        <body>
+               <div class="page">
                <?php include __DIR__."/sidebar.phtml" ?>
-               
-               <?php if (isset($html)) : ?>
+               <?php if (isset($exception)) : ?>
+                       <?= \mdref\ExceptionHandler::htmlException($exception) ?>
+               <?php elseif (isset($entry)) : ?>
                        <?php include __DIR__."/mdref.phtml" ?>
                <?php else: ?>
                        <?php include __DIR__."/index.phtml" ?>
                <?php endif; ?>
 
+               <?php if (@$_SERVER["SERVER_NAME"] != "localhost") : ?>
                <div id="disqus_thread"></div>
+               <script>
+                       var disqus_shortname = 'mdref';
+                       var disqus_identifier = '<?=$ref?>';
+                       (function() {
+                               var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
+                               dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
+                               (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
+                       })();
+               </script>
+               <?php endif; ?>
 
                <footer>
                        <?php include __DIR__."/footer.phtml" ?>
                </footer>
-               <script src="index.js"></script>
+               <?php if (isset($baseUrl)) : ?>
+                       <script src="index.js"></script>
+               <?php endif; ?>
+               </div>
        </body>
 </html>