Compare commits

...

2 Commits

Author SHA1 Message Date
be75a68c34
_layouts: move the ad including within the page-content div
It works locally, but will it work deployed?
2024-05-28 18:59:51 +03:00
506c2e2a9f
_layouts/mini.html: add the page-content div 2024-05-28 18:49:12 +03:00
5 changed files with 14 additions and 8 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>
</div>
{% include ad.html %}
</div>
</body>
</html>

7
_layouts/mini.html vendored
View File

@ -2,7 +2,10 @@
<html>
{% include head.html %}
<body>
{{ content }}
<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>