1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00

_layouts/default.html: only apply markdown-body class to content.

This commit is contained in:
Henrik Hautakoski 2020-06-05 15:47:26 +02:00
parent 4f2a6b5d59
commit 43aad4050c

View file

@ -2,11 +2,13 @@
<html lang="{{ site.lang | default: "en-US" }}">
{% include head.html %}
<body>
<div class="container-lg px-3 my-5 markdown-body">
<div class="container-lg px-3 my-5">
{% include header.html %}
{{ content }}
<div class="markdown-body">
{{ content }}
</div>
{% include footer.html %}
</div>