Add taglist to main blog listing
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 2m8s

This commit is contained in:
Lewis Dale 2024-05-06 12:39:49 +01:00
parent 2c4187a0df
commit 2c56a12736
2 changed files with 10 additions and 1 deletions

View File

@ -13,6 +13,11 @@
<h2><a href="{{ item.url }}">{{ item.data.title | safe }}</a></h2> <h2><a href="{{ item.url }}">{{ item.data.title | safe }}</a></h2>
<time class="block" datetime="{{ item.date | dateToRfc3339 }}">{{ item.date | dateDisplay }}</time> <time class="block" datetime="{{ item.date | dateToRfc3339 }}">{{ item.date | dateDisplay }}</time>
<p class="e-content p-summary">{{ item | excerpt }}</p> <p class="e-content p-summary">{{ item | excerpt }}</p>
<ul role="list" class="tags">
{% for t in item.data.tags | except("posts") | except("draft") %}
<li><a href="/post/tag/{{ t }}" rel="tag">#{{ t }}</a></li>
{% endfor %}
</ul>
<a href="{{ item.url }}" class="inline-block">Read more</a> <a href="{{ item.url }}" class="inline-block">Read more</a>
</li> </li>
{% endfor %} {% endfor %}

View File

@ -1,4 +1,4 @@
li:has(a[rel="tag"]) { li:has(> a[rel="tag"]) {
display: inline-block; display: inline-block;
margin-inline-end: 1ch; margin-inline-end: 1ch;
@ -6,3 +6,7 @@ li:has(a[rel="tag"]) {
content: ","; content: ",";
} }
} }
.tags {
color: var(--color-subtle);
}