1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-18 04:50:03 +02:00

Adding default layout from primer theme.

This commit is contained in:
Henrik Hautakoski 2019-10-22 14:43:12 +02:00
parent 87b029a837
commit ba746d7cf8
3 changed files with 28 additions and 0 deletions

16
_layouts/default.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
{% include head.html %}
<body>
<div class="container-lg px-3 my-5 markdown-body">
{% if site.title and site.title != page.title %}
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
{% endif %}
{{ content }}
{% include footer.html %}
</div>
{% include js.html %}
</body>
</html>