|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + |
| 7 | + <title>{{ page.title }}</title> |
| 8 | + {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %} |
| 9 | + <meta name="author" content="{{ site.author.name }}"> |
| 10 | + |
| 11 | + <!-- Enable responsive viewport --> |
| 12 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 13 | + |
| 14 | + <!-- Bootstrap styles --> |
| 15 | + <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.min.css" rel="stylesheet"> |
| 16 | + <!-- Optional theme --> |
| 17 | + <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet"> |
| 18 | + <!-- Sticky Footer --> |
| 19 | + <link href="{{ ASSET_PATH }}/bootstrap/css/bs-sticky-footer.css" rel="stylesheet"> |
| 20 | + |
| 21 | + <!-- Custom styles --> |
| 22 | + <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css" media="all"> |
| 23 | + |
| 24 | + <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> |
| 25 | + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| 26 | + <!--[if lt IE 9]> |
| 27 | + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> |
| 28 | + <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> |
| 29 | + <![endif]--> |
| 30 | + |
| 31 | + <!-- Fav and touch icons --> |
| 32 | + <!-- Update these with your own images |
| 33 | + <link rel="shortcut icon" href="images/favicon.ico"> |
| 34 | + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> |
| 35 | + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> |
| 36 | + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> |
| 37 | + --> |
| 38 | + |
| 39 | + <!-- atom & rss feed --> |
| 40 | + <link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> |
| 41 | + <link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> |
| 42 | + |
| 43 | + </head> |
| 44 | + |
| 45 | + <body> |
| 46 | + <div id="wrap"> |
| 47 | + <nav class="navbar navbar-default" role="navigation"> |
| 48 | + <!-- Brand and toggle get grouped for better mobile display --> |
| 49 | + <div class="navbar-header"> |
| 50 | + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#jb-navbar-collapse"> |
| 51 | + <span class="sr-only">Toggle navigation</span> |
| 52 | + <span class="icon-bar"></span> |
| 53 | + <span class="icon-bar"></span> |
| 54 | + <span class="icon-bar"></span> |
| 55 | + </button> |
| 56 | + <a class="navbar-brand" href="{{ HOME_PATH }}">{{ site.title }}</a> |
| 57 | + </div> |
| 58 | + |
| 59 | + <!-- Collect the nav links, forms, and other content for toggling --> |
| 60 | + <div class="collapse navbar-collapse" id="jb-navbar-collapse"> |
| 61 | + <ul class="nav navbar-nav"> |
| 62 | + {% assign pages_list = site.pages %} |
| 63 | + {% assign group = 'navigation' %} |
| 64 | + {% include JB/pages_list %} |
| 65 | + </ul> |
| 66 | + <form class="navbar-form navbar-right" role="search"> |
| 67 | + <div class="form-group"> |
| 68 | + <input type="text" class="form-control" placeholder="Search"> |
| 69 | + </div> |
| 70 | + <button type="submit" class="btn btn-default">Submit</button> |
| 71 | + </form> |
| 72 | + </div><!-- /.navbar-collapse --> |
| 73 | + </nav> |
| 74 | + |
| 75 | + <div class="container"> |
| 76 | + {{ content }} |
| 77 | + </div> |
| 78 | + |
| 79 | + </div> |
| 80 | + |
| 81 | + <div id="footer"> |
| 82 | + <div class="container"> |
| 83 | + <p>© {{ site.time | date: '%Y' }} {{ site.author.name }} |
| 84 | + with help from <a href="http://jekyllbootstrap.com" target="_blank" title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a> |
| 85 | + and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a> |
| 86 | + </p> |
| 87 | + </div> |
| 88 | + </div id="footer"> |
| 89 | + |
| 90 | + {% include JB/analytics %} |
| 91 | + |
| 92 | + |
| 93 | + <!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not supported in IE8) --> |
| 94 | + <!-- Placed at the end of the document so the pages load faster --> |
| 95 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
| 96 | + <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script> |
| 97 | + </body> |
| 98 | +</html> |
0 commit comments