117 lines
3.7 KiB
HTML
117 lines
3.7 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{% block title %}{{ SITENAME }}{% endblock %}</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="author" content="{{ AUTHOR }}">
|
||
|
<link rel="icon" type="image/png" href="{{ SITEURL }}/theme/img/favicon.ico">
|
||
|
<!-- Le styles -->
|
||
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.css" type="text/css" />
|
||
|
<script type="text/javascript">
|
||
|
/* <![CDATA[ */
|
||
|
(function() {
|
||
|
var s = document.createElement('script');
|
||
|
var t = document.getElementsByTagName('script')[0];
|
||
|
|
||
|
s.type = 'text/javascript';
|
||
|
s.async = true;
|
||
|
s.src = '//api.flattr.com/js/0.6/load.js?'+
|
||
|
'mode=auto&uid=wxcafe&button=compact&popout=0';
|
||
|
t.parentNode.insertBefore(s, t);
|
||
|
})();
|
||
|
/* ]]> */
|
||
|
</script> <!-- flattr button loader -->
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
padding-top: 60px;
|
||
|
padding-bottom: 40px;
|
||
|
}
|
||
|
.sidebar-nav {
|
||
|
padding: 9px 0;
|
||
|
}
|
||
|
.tag-1 {
|
||
|
font-size: 13pt;
|
||
|
}
|
||
|
.tag-2 {
|
||
|
font-size: 10pt;
|
||
|
}
|
||
|
.tag-2 {
|
||
|
font-size: 8pt;
|
||
|
}
|
||
|
.tag-4 {
|
||
|
font-size: 6pt;
|
||
|
}
|
||
|
</style>
|
||
|
<link href="{{ SITEURL }}/theme/css/bootstrap-responsive.css" rel="stylesheet">
|
||
|
<link href="{{ SITEURL }}/theme/css/font-awesome.css" rel="stylesheet">
|
||
|
<link href="{{ SITEURL }}/theme/css/pygments.css" rel="stylesheet">
|
||
|
<!-- Le fav and touch icons -->
|
||
|
<link rel="shortcut icon" href="{{ SITEURL }}/theme/images/favicon.ico">
|
||
|
|
||
|
{% if FEED_RSS %}
|
||
|
<link href="{{ SITEURL }}/{{ FEED_RSS }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" />
|
||
|
{% endif %}
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="navbar navbar-fixed-top">
|
||
|
<div class="navbar-inner">
|
||
|
<div class="container-fluid">
|
||
|
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
||
|
<span class="icon-bar"></span>
|
||
|
<span class="icon-bar"></span>
|
||
|
<span class="icon-bar"></span>
|
||
|
</a>
|
||
|
<a class="brand" href="{{ SITEURL }}/index.html">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a>
|
||
|
<div class="nav-collapse">
|
||
|
<ul class="nav">
|
||
|
{% for title, link in MENUITEMS %}
|
||
|
<li><a href="{{ link }}">{{ title }}</a></li>
|
||
|
{% endfor %}
|
||
|
<li><a href="{{ SITEURL }}/archives.html"><i class="icon-th-list"></i> Archives</a></li>
|
||
|
{% for page in PAGES %}
|
||
|
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||
|
{% for cat, null in categories %}
|
||
|
<li {% if cat == category %}class="active"{% endif %}>
|
||
|
<a href="{{ SITEURL }}/{{ cat.url }}">
|
||
|
<i class="icon-folder-open icon-large"></i> {{ cat }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
<li class="divider-vertical"></li>
|
||
|
<ul class="nav pull-right">
|
||
|
</ul>
|
||
|
</ul>
|
||
|
</div><!--/.nav-collapse -->
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="container-fluid">
|
||
|
<div class="row">
|
||
|
<div class="span9" id="content">
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</div><!--/span-->
|
||
|
<div class="span3 well sidebar-nav" id="sidebar">
|
||
|
{% include 'sidebar.html' %}
|
||
|
</div><!--/.well -->
|
||
|
</div><!--/row-->
|
||
|
<hr>
|
||
|
<footer>
|
||
|
<address id="about">
|
||
|
Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>,
|
||
|
which takes great advantage of <a href="http://python.org">Python</a>.<br />
|
||
|
Powered by <a href="https://github.com/getpelican/pelican-themes/tree/master/bootstrap2">bootstrap2</a> theme, thanks!
|
||
|
</address>
|
||
|
</footer>
|
||
|
</div><!--/.fluid-container-->
|
||
|
</body>
|
||
|
</html>
|