mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2026-04-03 14:07:59 +02:00
9 lines
254 B
HTML
Vendored
9 lines
254 B
HTML
Vendored
<h1>Articles by tag :{{ page.tag }}</h1>
|
|
<div>
|
|
{% if site.tags[page.tag] %} {% for post in site.tags[page.tag] %}
|
|
<a href="{{ post.url }}/">{{ post.title }}</a>
|
|
{% endfor %} {% else %}
|
|
<p>There are no posts for this tag.</p>
|
|
{% endif %}
|
|
</div>
|