24 lines
461 B
HTML
24 lines
461 B
HTML
<html>
|
|
<head>
|
|
<title>{% block title %}Site title{% endblock title %}</title>
|
|
|
|
<link rel="stylesheet" href="/style.css" >
|
|
{% block head %}{% endblock head %}
|
|
</head>
|
|
<body>
|
|
<h1>
|
|
<a href="/">
|
|
Site title
|
|
</a>
|
|
</h1>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
</section>
|
|
|
|
{% block footer %}{% endblock footer %}
|
|
</body>
|
|
</html>
|