<!DOCTYPE html>
<html lang="en">
<head>
	{% block head %}
	<link rel="stylesheet" href="style.css" />
	<title>{% block title %}{% endblock title %} - My Webpage</title>
	{% endblock head %}
</head>
<body>
	<div id="content">{% block content %}{% endblock content %}</div>
	<div id="footer">
		{% block footer %}
		&copy; Copyright 2008
		{% endblock footer %}
	</div>
</body>
</html>
