1
0
Fork 0
forked from github/pelican

Add the base template (layout)

This commit is contained in:
Alexis Metaireau 2010-08-17 23:01:25 +02:00
commit 3daaecda26

20
pelican/themes/base.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{{ blogtitle }}{%endblock%}</title>
<meta charset="utf-8" />
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="{{ blogurl }}">{{ blogtitle }} <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="#">pelican</a>, which takes great advantages of <a href="http://python.org">python</a>.
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</body>
</html>