1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/templates/base.html

26 lines
980 B
HTML
Raw Normal View History

2010-08-17 23:01:25 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2010-08-18 15:08:35 +02:00
<title>{% block title %}{{ BLOGNAME }}{%endblock%}</title>
2010-08-17 23:01:25 +02:00
<meta charset="utf-8" />
</head>
<body id="index" class="home">
<header id="banner" class="body">
2010-08-18 15:08:35 +02:00
<h1><a href="{{ BLOGURL }}">{{ BLOGNAME }} <strong>{{ BLOGSUBTITLE }}</strong></a></h1>
2010-08-17 23:01:25 +02:00
</header><!-- /#banner -->
{% if categories %}<ul>
{% for category, articles in categories %}
<li><a href="category/{{category}}.html">{{ category }}</a></li>
{% endfor %}
</ul> {% endif %}
2010-08-17 23:01:25 +02:00
{% block content %}
{% endblock %}
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a
href="http://hg.lolnet.org/pelican/">pelican</a>, and obviously <a href="http://python.org">python</a>!
2010-08-17 23:01:25 +02:00
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</body>
</html>