forked from data.coop/website
Jesper Hess
bf19af3c3a
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.
21 lines
331 B
HTML
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>
|