77 lines
2.3 KiB
HTML
77 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block windowtitle %}{{ SITENAME }}{% endblock %}</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="{{ AUTHOR }}">
|
|
|
|
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="{{ SITEURL }}/theme/html5.js"></script>
|
|
<![endif]-->
|
|
|
|
<!-- Le styles -->
|
|
<link href="{{ SITEURL }}/theme/bootstrap.min.css" rel="stylesheet">
|
|
<link href="{{ SITEURL }}/theme/local.css" rel="stylesheet">
|
|
<link href="{{ SITEURL }}/theme/pygments.css" rel="stylesheet">
|
|
{% include "analytics.html" %}
|
|
{% include "disqus.html" %}
|
|
</head>
|
|
<body>
|
|
{% include "facebook.html" %}
|
|
{% include "github.html" %}
|
|
<div class="topbar">
|
|
<div class="topbar-inner">
|
|
<div class="container-fluid">
|
|
<a class="brand" href="{{ SITEURL }}/index.html">{{ SITENAME }}</a>
|
|
<ul class="nav">
|
|
{% for title, link in MENUITEMS %}
|
|
<li><a href="{{ link }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
{% if DISPLAY_PAGES_ON_MENU %}
|
|
{% for page in PAGES %}
|
|
<li><a href="{{ SITEURL }}/pages/{{ page.url }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% for cat, null in categories %}
|
|
<li {% if cat == category %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p class="pull-right"><a href="{{ SITEURL }}/archives.html">[archives]</a> <a href="{{ SITEURL }}/tags.html">[tags]</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
<div class="sidebar">
|
|
<div class="well">
|
|
<h3>Blogroll</h3>
|
|
<ul>
|
|
{% for name, link in LINKS %}
|
|
<li><a href="{{ link }}">{{ name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="social">
|
|
<h3>Social</h3>
|
|
<ul>
|
|
{% for name, link in SOCIAL %}
|
|
<li><a href="{{ link }}">{{ name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
{% block indextitle %}<div class="page-header"><h1>{% block title %} {{ self.windowtitle() }} {% endblock %}</h1></div>{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
<footer>
|
|
<p> Powered by <a href="http://alexis.notmyidea.org/pelican/">Pelican</a>, theme based on <a href="http://twitter.github.com/bootstrap/">Bootstrap, from Twitter</a>.</p>
|
|
<p>© {{ AUTHOR }} 2011</p>
|
|
</footer>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|