fix: wrong html

This commit is contained in:
Ayo 2023-05-22 12:10:09 +02:00
parent 49c649a398
commit 6b319075d1
7 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@ layout: default
<div class="blog-home">
{% include message.html %} {% if site.posts.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.posts %} {% include post-list.html %} {% endfor %}
{% for post in site.posts %} {% include post-item.html %} {% endfor %}
</ul>
{% endif %}
</div>

View file

@ -9,7 +9,7 @@ permalink: /entertaining/
<div class="blog-home">
{% if site.categories.entertaining.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.entertaining %} {% include post-list.html %}
{% for post in site.categories.entertaining %} {% include post-item.html %}
{% endfor %}
</ul>
{% else %}

View file

@ -9,7 +9,7 @@ permalink: /motivational/
<div class="blog-home">
{% if site.categories.motivational.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.motivational %} {% include post-list.html %}
{% for post in site.categories.motivational %} {% include post-item.html %}
{% endfor %}
</ul>
{% else %}

View file

@ -9,7 +9,7 @@ permalink: /personal/
<div class="blog-home">
{% if site.categories.personal.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.personal %} {% include post-list.html %} {%
{% for post in site.categories.personal %} {% include post-item.html %} {%
endfor %}
</ul>
{% else %}

View file

@ -9,7 +9,7 @@ permalink: /productivity/
<div class="blog-home">
{% if site.categories.productivity.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.productivity %}{% include post-list.html %}
{% for post in site.categories.productivity %}{% include post-item.html %}
{% endfor %}
</ul>
{% else %}

View file

@ -9,7 +9,7 @@ permalink: /projects/
<div class="blog-home">
{% if site.categories.projects.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.projects %} {% include post-list.html %} {%
{% for post in site.categories.projects %} {% include post-item.html %} {%
endfor %}
</ul>
{% else %}

View file

@ -9,7 +9,7 @@ permalink: /technology/
<div class="blog-home">
{% if site.categories.technology.size > 0 %}
<ul class="blog-home__list-items">
{% for post in site.categories.technology %} {% include post-list.html %} {%
{% for post in site.categories.technology %} {% include post-item.html %} {%
endfor %}
</ul>
{% else %}