_layouts: move the ad including within the page-content div

It works locally, but will it work deployed?
This commit is contained in:
Aminda Suomalainen 2024-05-28 18:59:51 +03:00
parent 506c2e2a9f
commit be75a68c34
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
5 changed files with 11 additions and 7 deletions

View File

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

3
_layouts/index.html vendored
View File

@ -7,7 +7,8 @@
<div class="page-content">
<div class="wrapper">{{ content }}</div>
{% include ad.html %}
</div>
{% include ad.html %}
</body>
</html>

3
_layouts/mini.html vendored
View File

@ -4,7 +4,8 @@
<body>
<div class="page-content">
<div class="wrapper">{{ content }}</div>
{% include ad.html %}{% include ad.html %}
</div>
</body>
{% include ad.html %}
</html>

4
_layouts/page.html vendored
View File

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

4
_layouts/post.html vendored
View File

@ -25,6 +25,6 @@ tags_content_temp %} {% endif %} {% endfor %} {% else %} {% assign tags_content
{{ content }}
<p id="post-meta">{{ tags_content }}</p>
</article>
</div>
{% include ad.html %}
{% include ad.html %}
</div>