website/_layouts/default.html
Jesper Hess bf19af3c3a
Update to latest version of Jekyll base template
Updates to Jekyll 3.4.0. This version does not
include theme files by default so I have included
the files from the "minima" theme to have a starting
point for the site.
2017-02-06 11:51:18 +01:00

21 lines
331 B
HTML

<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
{% include header.html %}
<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>
{% include footer.html %}
</body>
</html>