it's supposed to be within content

This commit is contained in:
Aminda Suomalainen 2024-05-20 18:47:49 +03:00
parent efe6992054
commit f7c7da28a8
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
3 changed files with 5 additions and 6 deletions

View File

@ -3,10 +3,10 @@
{% include head.html %}
<body>
{% include ad.html %} {% include header.html %}
{% include header.html %}
<div class="page-content">
<div class="wrapper">{{ content }}</div>
<div class="wrapper">{% include ad.html %} {{ content }}</div>
</div>
{% include footer.html %}

4
_layouts/index.html vendored
View File

@ -3,10 +3,10 @@
{% include head.html %}
<body>
{% include ad.html %} {% include header.html %}
{% include header.html %}
<div class="page-content">
<div class="wrapper">{{ content }}</div>
<div class="wrapper">{% include ad.html %} {{ content }}</div>
</div>
</body>
</html>

3
_layouts/page.html vendored
View File

@ -6,6 +6,5 @@ layout: default
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
{% include ad.html %}
<article class="post-content">{{ content }}</article>
<article class="post-content">{% include ad.html %} {{ content }}</article>
</div>