|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <title> |
| 6 | + {% if page.title %} |
| 7 | + {{ page.title }} - |
| 8 | + {% endif %} |
| 9 | + {{ site.title }} |
| 10 | + </title> |
| 11 | + {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %} |
| 12 | + <meta name="author" content="{{ site.author.name }}"> |
| 13 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 14 | + <!-- HTML5 shim, for IE6-8 support of HTML elements --> |
| 15 | + <!--[if lt IE 9]> |
| 16 | + <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |
| 17 | + <![endif]--> |
| 18 | + |
| 19 | + <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.min.css" rel="stylesheet"> |
| 20 | + <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"> |
| 21 | + <link rel="stylesheet" type="text/css" href="{{ ASSET_PATH }}/css-social-buttons/css/zocial.stripped.css"> |
| 22 | + <link href="{{ ASSET_PATH }}/css/pygments.css" rel="stylesheet" type="text/css" media="all"> |
| 23 | + <link href="{{ ASSET_PATH }}/css/darkstrap.css" rel="stylesheet" type="text/css" media="all"> |
| 24 | + <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css" media="all"> |
| 25 | + |
| 26 | + <!-- fav and touch icons --> |
| 27 | + <!-- Update these with your own images |
| 28 | + <link rel="shortcut icon" href="images/favicon.ico"> |
| 29 | + <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> |
| 30 | + <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> |
| 31 | + <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> |
| 32 | + --> |
| 33 | + </head> |
| 34 | + |
| 35 | + <body> |
| 36 | + <div id="page-wrap"> |
| 37 | + <div class="navbar"> |
| 38 | + <div class="navbar-inner"> |
| 39 | + <div class="container"> |
| 40 | + <!-- .btn-navbar is used as the toggle for collapsed navbar content --> |
| 41 | + <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> |
| 42 | + <span class="icon-bar"></span> |
| 43 | + <span class="icon-bar"></span> |
| 44 | + <span class="icon-bar"></span> |
| 45 | + </a> |
| 46 | + |
| 47 | + <a class="brand" href="{{ HOME_PATH }}">{{ site.title }}</a> |
| 48 | + |
| 49 | + <div class="nav-collapse"> |
| 50 | + <ul class="nav"> |
| 51 | + {% assign pages_list = site.pages %} |
| 52 | + {% assign group = 'navigation' %} |
| 53 | + {% include JB/pages_list %} |
| 54 | + </ul> |
| 55 | + <ul class="nav pull-right social visible-desktop"> |
| 56 | + <li class="divider-vertical"></li> |
| 57 | + {% if site.author.github %} |
| 58 | + <li> |
| 59 | + <a href="https://github.com/{{ site.author.github }}" class="zocial github icon" target="_blank"> |
| 60 | + <span class="hidden-desktop">Github</span> |
| 61 | + </a> |
| 62 | + </li> |
| 63 | + {% endif %} |
| 64 | + {% if site.author.googleplus %} |
| 65 | + <li> |
| 66 | + <a href="https://plus.google.com/{{ site.author.googleplus }}" class="zocial googleplus icon" target="_blank"> |
| 67 | + <span class="hidden-desktop">Google+</span> |
| 68 | + </a> |
| 69 | + </li> |
| 70 | + {% endif %} |
| 71 | + {% if site.author.twitter %} |
| 72 | + <li> |
| 73 | + <a href="https://twitter.com/{{ site.author.twitter }}" class="zocial twitter icon" target="_blank"> |
| 74 | + <span class="hidden-desktop">Twitter</span> |
| 75 | + </a> |
| 76 | + </li> |
| 77 | + {% endif %} |
| 78 | + {% if site.author.facebook %} |
| 79 | + <li> |
| 80 | + <a href="http://www.facebook.com/{{ site.author.facebook }}" class="zocial facebook icon" target="_blank"> |
| 81 | + <span class="hidden-desktop">Facebook</span> |
| 82 | + </a> |
| 83 | + </li> |
| 84 | + {% endif %} |
| 85 | + {% if site.author.linkedin %} |
| 86 | + <li> |
| 87 | + <a href="http://www.linkedin.com/in/{{ site.author.linkedin }}" class="zocial linkedin icon" target="_blank"> |
| 88 | + <span class="hidden-desktop">LinkedIn</span> |
| 89 | + </a> |
| 90 | + </li> |
| 91 | + {% endif %} |
| 92 | + {% if site.author.feedburner %} |
| 93 | + <li> |
| 94 | + <a href="http://feeds.feedburner.com/{{ site.author.feedburner }}" class="zocial rss icon" target="_blank"> |
| 95 | + <span class="hidden-desktop">FeedBurner</span> |
| 96 | + </a> |
| 97 | + </li> |
| 98 | + {% endif %} |
| 99 | + </ul> |
| 100 | + </div> |
| 101 | + </div> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + |
| 105 | + <div class="container"> |
| 106 | + <div class="content"> |
| 107 | + {{ content }} |
| 108 | + </div> |
| 109 | + </div> <!-- /container --> |
| 110 | + |
| 111 | + <div class="footer-push"></div> |
| 112 | + </div><!--/.page-wrap --> |
| 113 | + |
| 114 | + <footer> |
| 115 | + <div class="container"> |
| 116 | + <p>© {{ site.time | date: '%Y' }} {{ site.author.name }} |
| 117 | + with help from <a href="http://jekyllbootstrap.com" target="_blank" title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a> |
| 118 | + and <a href="http://github.com/dhulihan/hooligan" target="_blank">The Hooligan Theme</a> |
| 119 | + </p> |
| 120 | + </div> |
| 121 | + </footer> |
| 122 | + |
| 123 | + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> |
| 124 | + <script>window.jQuery || document.write('<script src="{{ ASSET_PATH }}/js/jquery.min.js"><\/script>')</script> |
| 125 | + <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script> |
| 126 | + |
| 127 | + {% include JB/analytics %} |
| 128 | + </body> |
| 129 | +</html> |
0 commit comments