20 lines
483 B
HTML
20 lines
483 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% seo %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
|
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
|
</head>
|
|
|
|
<body {% if page.id %}id="page-{{ page.id }}"{% endif %}>
|
|
<section class="entry-content">
|
|
{% if page.title %}
|
|
<header class="entry-header">
|
|
<h1 class="entry-title">{{ page.title }}</h1>
|
|
</header>
|
|
{% endif %}
|
|
{{ content }}
|
|
</section>
|
|
</body>
|
|
</html>
|