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.

64 lines
3.2 KiB

  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. <meta name="apple-mobile-web-app-capable" content="yes" />
  8. <!-- standard viewport tag to set the viewport to the device's width
  9. , Android 2.3 devices need this so 100% width works properly and
  10. doesn't allow children to blow up the viewport width-->
  11. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
  12. <!-- width=device-width causes the iPhone 5 to letterbox the app, so
  13. we want to exclude it for iPhone 5 to allow full screen apps -->
  14. <meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
  15. <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
  16. <link rel="stylesheet" href="/bootstrap/css/bootstrap-theme.min.css">
  17. <link href="/font-awesome/css/font-awesome.min.css" rel="stylesheet" media="all">
  18. <link rel="stylesheet" href="/openwebicons/css/openwebicons-bootstrap.css" />
  19. <link rel="stylesheet" href="/css/style.css">
  20. <!-- icon stuff from www.favicongenerator.org -->
  21. <link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-icon-57x57.png">
  22. <link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-icon-60x60.png">
  23. <link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-icon-72x72.png">
  24. <link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-icon-76x76.png">
  25. <link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-icon-114x114.png">
  26. <link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-icon-120x120.png">
  27. <link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-icon-144x144.png">
  28. <link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-icon-152x152.png">
  29. <link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-icon-180x180.png">
  30. <link rel="icon" type="image/png" sizes="192x192" href="/images/icons/android-icon-192x192.png">
  31. <link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png">
  32. <link rel="icon" type="image/png" sizes="96x96" href="/images/icons/favicon-96x96.png">
  33. <link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png">
  34. <link rel="manifest" href="/images/icons/manifest.json">
  35. <meta name="msapplication-TileColor" content="#ffffff">
  36. <meta name="msapplication-TileImage" content="/images/icons/ms-icon-144x144.png">
  37. <meta name="theme-color" content="#ffffff">
  38. <link rel="icon" href="/favicon.ico" type="image/x-icon">
  39. <script src="/js/jquery-1.7.1.min.js"></script>
  40. </head>
  41. <body role="document">
  42. <div class="page">
  43. <div class="container">
  44. <?= $this->fetch($this->page . '.php') ?>
  45. </div>
  46. <div class="footer">
  47. <p class="credits">
  48. This code is <a href="https://github.com/aaronpk/Switchboard">open source</a>.
  49. Feel free to send a pull request, or <a href="https://github.com/aaronpk/Switchboard/issues">file an issue</a>.
  50. </p>
  51. </div>
  52. </div>
  53. </body>
  54. </html>