1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/templates/base.html
2010-09-15 12:37:47 +02:00

21 lines
772 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{{ BLOGNAME }}{%endblock%}</title>
<meta charset="utf-8" />
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="{{ BLOGURL }}">{{ BLOGNAME }} <strong>{{ BLOGSUBTITLE }}</strong></a></h1>
</header><!-- /#banner -->
{% 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>!
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</body>
</html>