changed tags slightly

This commit is contained in:
Speyll 2023-08-28 15:20:15 +01:00
parent c6d4a0f53b
commit 63f83cebb7
4 changed files with 6 additions and 4 deletions

View file

@ -4,4 +4,6 @@ path = "blog"
title = "All blog posts"
sort_by = "date"
page_template = "blog-page.html"
+++
+++
> List of all *[tags](/tags)*

View file

@ -231,7 +231,7 @@ textarea {
.navBar {
margin: .5rem;
margin-bottom: 1rem;
margin-bottom: 2rem;
display: flex;
flex-direction: row;
gap: .4rem;

View file

@ -43,7 +43,7 @@
<p class="tagsData">
{% if page.taxonomies.tags %}
{% for tag in page.taxonomies.tags %}
<a href="/tags/{{ tag | slugify }}">#{{ tag }}</a>
<a href="/tags/{{ tag | slugify }}">&#47;{{ tag }}&#47;</a>
{% endfor %}
{% endif %}
</p>

View file

@ -40,7 +40,7 @@
<p class="tagsData">
{% if page.taxonomies.tags %}
{% for tag in page.taxonomies.tags %}
<a href="/tags/{{ tag | slugify }}">#{{ tag }}</a>
<a href="/tags/{{ tag | slugify }}">&#47;{{ tag }}&#47;</a>
{% endfor %}
{% endif %}
</p>