diff --git a/_includes/postlistbytopic.html b/_includes/postlistbytopic.html new file mode 100644 index 0000000000000000000000000000000000000000..4407966a3f364b360f4de37cf2d4b4f86ea01fa8 --- /dev/null +++ b/_includes/postlistbytopic.html @@ -0,0 +1,14 @@ +<div> + <div style="background-color: rgb(55,55,55);"> + <h2 style="margin: 5px;">Weitere Artikel zu diesem Thema</h2> + </div> +<ul style="margin: 25px;"> + {% for post in site.posts reversed %} + {% if post.tags contains {{include.topic}} %} + <li> + <a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a> + </li> + {% endif %} + {% endfor %} +</ul> +</div>