You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
4.8 KiB

9 years ago
9 years ago
9 years ago
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <title><?= $this->title ?></title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <link rel="pingback" href="https://webmention.io/aaronpk/xmlrpc" />
  8. <link rel="webmention" href="https://webmention.io/aaronpk/webmention" />
  9. <!-- standard viewport tag to set the viewport to the device's width
  10. , Android 2.3 devices need this so 100% width works properly and
  11. doesn't allow children to blow up the viewport width-->
  12. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
  13. <!-- width=device-width causes the iPhone 5 to letterbox the app, so
  14. we want to exclude it for iPhone 5 to allow full screen apps -->
  15. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
  16. <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
  17. <link rel="stylesheet" href="/bootstrap/css/bootstrap-theme.min.css">
  18. <script src="/js/jquery-1.7.1.min.js"></script>
  19. <script src="/libs/localforage.js"></script>
  20. <script src="/bootstrap/js/bootstrap.min.js"></script>
  21. <script src="/libs/tokenfield/bootstrap-tokenfield.min.js"></script>
  22. <link rel="stylesheet" href="/libs/tokenfield/bootstrap-tokenfield.min.css">
  23. <link rel="stylesheet" href="/libs/tokenfield/tokenfield-typeahead.min.css">
  24. <link rel="stylesheet" href="/css/style.css">
  25. <link rel="apple-touch-icon" sizes="57x57" href="/images/quill-icon-57.png">
  26. <link rel="apple-touch-icon" sizes="72x72" href="/images/quill-icon-72.png">
  27. <link rel="apple-touch-icon" sizes="114x114" href="/images/quill-icon-114.png">
  28. <link rel="apple-touch-icon" sizes="144x144" href="/images/quill-icon-144.png">
  29. <link rel="apple-touch-icon" sizes="196x196" href="/images/quill-icon-196.png">
  30. <link rel="icon" href="/favicon.ico" type="image/x-icon">
  31. <link rel="icon" sizes="196x196" href="/images/quill-icon-196.png">
  32. <meta name="apple-mobile-web-app-capable" content="yes">
  33. <meta name="mobile-web-app-capable" content="yes">
  34. <meta name="theme-color" content="#428bca">
  35. <link rel="manifest" href="/js/manifest.json">
  36. <script src="/js/script.js"></script>
  37. <script src="/js/date.js"></script>
  38. <script src="/js/cassis.js"></script>
  39. </head>
  40. <body role="document">
  41. <?php if(Config::$gaid): ?>
  42. <script type="text/javascript">
  43. var _gaq = _gaq || [];
  44. _gaq.push(['_setAccount', '<?= Config::$gaid ?>']);
  45. _gaq.push(['_trackPageview']);
  46. (function() {
  47. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  48. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  49. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  50. })();
  51. </script>
  52. <?php endif ?>
  53. <div class="page">
  54. <div class="container">
  55. <?= $this->fetch($this->page . '.php') ?>
  56. </div>
  57. <div class="footer">
  58. <div class="nav">
  59. <ul class="nav navbar-nav">
  60. <?php if(session('me') && isset($this->user)) { ?>
  61. <?php if(supports_post_type($this->user, 'article')): ?>
  62. <li><a href="/editor">📄 Editor</a></li>
  63. <?php endif; ?>
  64. <?php if(supports_post_type($this->user, 'note')): ?>
  65. <li><a href="/new">✏️ Note</a></li>
  66. <?php endif; ?>
  67. <?php if(supports_post_type($this->user, 'bookmark')): ?>
  68. <li><a href="/bookmark">🔖 Bookmark</a></li>
  69. <?php endif; ?>
  70. <?php if(supports_post_type($this->user, 'like')): ?>
  71. <li><a href="/favorite">👍 Favorite</a></li>
  72. <?php endif; ?>
  73. <?php } ?>
  74. <li><a href="/docs">Docs</a></li>
  75. </ul>
  76. <ul class="nav navbar-nav navbar-right">
  77. <?php if(session('me')) { ?>
  78. <li><a href="/settings"> <?= display_url(session('me')) ?></a></li>
  79. <li><a href="/signout">Sign Out</a></li>
  80. <?php } else if(property_exists($this, 'authorizing')) { ?>
  81. <li class="navbar-text"><?= $this->authorizing ?></li>
  82. <?php } else { ?>
  83. <form action="/auth/start" method="get" class="navbar-form">
  84. <input type="text" name="me" placeholder="yourdomain.com" class="form-control" />
  85. <button type="submit" class="btn">Sign In</button>
  86. <input type="hidden" name="redirect_uri" value="https://<?= $_SERVER['SERVER_NAME'] ?>/indieauth" />
  87. </form>
  88. <?php } ?>
  89. </ul>
  90. </div>
  91. <p class="credits">&copy; <?=date('Y')?> by <a href="https://aaronparecki.com">Aaron Parecki</a>.
  92. This code is <a href="https://github.com/aaronpk/Quill">open source</a>.
  93. Feel free to send a pull request, or <a href="https://github.com/aaronpk/Quill/issues">file an issue</a>.</p>
  94. </div>
  95. </div>
  96. </body>
  97. </html>