|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title><?= $this->title ?></title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<!-- standard viewport tag to set the viewport to the device's width
|
|
, Android 2.3 devices need this so 100% width works properly and
|
|
doesn't allow children to blow up the viewport width-->
|
|
<meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width" />
|
|
<!-- width=device-width causes the iPhone 5 to letterbox the app, so
|
|
we want to exclude it for iPhone 5 to allow full screen apps -->
|
|
<meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)" />
|
|
|
|
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/bootstrap/css/bootstrap-theme.min.css">
|
|
<link href="/font-awesome/css/font-awesome.min.css" rel="stylesheet" media="all">
|
|
<link rel="stylesheet" href="/openwebicons/css/openwebicons-bootstrap.css" />
|
|
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
|
|
<!-- icon stuff from www.favicongenerator.org -->
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-icon-57x57.png">
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-icon-60x60.png">
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-icon-72x72.png">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-icon-76x76.png">
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-icon-114x114.png">
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-icon-120x120.png">
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-icon-144x144.png">
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-icon-152x152.png">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-icon-180x180.png">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/images/icons/android-icon-192x192.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/images/icons/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png">
|
|
<link rel="manifest" href="/images/icons/manifest.json">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="msapplication-TileImage" content="/images/icons/ms-icon-144x144.png">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
|
|
|
<script src="/js/jquery-1.7.1.min.js"></script>
|
|
</head>
|
|
|
|
<body role="document">
|
|
|
|
<div class="page">
|
|
|
|
<div class="container">
|
|
<?= $this->fetch($this->page . '.php') ?>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p class="credits">
|
|
Switchboard is made by <a href="http://aaronparecki.com/">Aaron Parecki</a> and is <a href="https://github.com/aaronpk/Switchboard">open source</a>.
|
|
Feel free to send a pull request, or <a href="https://github.com/aaronpk/Switchboard/issues">file an issue</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|