2013-01-29 06:41:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ page.title }}</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{{# page.description }}
|
|
|
|
<meta name="description" content="{{ . }}">
|
|
|
|
{{/ page.description }}
|
|
|
|
<meta name="author" content="{{ data.author.name }}">
|
|
|
|
|
|
|
|
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
<!-- Le styles -->
|
|
|
|
{{# stylesheets.load }}
|
|
|
|
bootstrap.min.css
|
|
|
|
style.css
|
|
|
|
google_prettify/sons-of-obsidian.css
|
|
|
|
{{/ stylesheets.load }}
|
|
|
|
|
|
|
|
<!-- Le fav and touch icons -->
|
|
|
|
<!-- Update these with your own images
|
|
|
|
<link rel="shortcut icon" href="images/favicon.ico">
|
|
|
|
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
|
|
|
|
-->
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="navbar">
|
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="container-narrow">
|
|
|
|
<a class="brand" href="{{urls.base_path}}">{{ data.title }}</a>
|
|
|
|
<ul class="nav">
|
2013-05-20 00:05:36 +00:00
|
|
|
{{# data.navigation?to__root }}
|
2013-01-29 06:41:34 +00:00
|
|
|
{{> pages_list }}
|
2013-05-20 00:05:36 +00:00
|
|
|
{{/ data.navigation?to__root }}
|
2013-01-29 06:41:34 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container-narrow">
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
{{{ content }}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div class="footer">
|
|
|
|
<p>© {{ data.author.name }} 2013
|
|
|
|
with help from <a href="http://ruhoh.com" target="_blank" title="The Definitive Technical Blogging Framework">ruhoh</a>
|
|
|
|
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div> <!-- /container -->
|
|
|
|
|
|
|
|
{{{ widgets.google_prettify }}}
|
|
|
|
{{{ widgets.analytics }}}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|