<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name=author content="Scott D. Anderson">
<title>{{title}}</title>
{% block headstuff %}{% endblock %}
</head>
<body>
{% block content %}
<h1>{{title}}</h1>
<article>Lorem ipsum ...</article>
{% endblock %}
<footer>
{% block footer %}
Default Copyright notices and stuff
{% endblock %}
</footer>
</body>
</html>