_layouts: remove broken ad includes for now

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

2
_layouts/mini.html vendored
View File

@ -2,6 +2,6 @@
<html>
{% include head.html %}
<body>
{% include ad.html %} {{ content }}
{{ content }}
</body>
</html>

2
_layouts/page.html vendored
View File

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

2
_layouts/post.html vendored
View File

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