danielrayjones/_layouts/default.html
2018-01-20 20:03:18 -06:00

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>