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

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

View file

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

View file

@ -43,7 +43,7 @@
<p class="tagsData"> <p class="tagsData">
{% if page.taxonomies.tags %} {% if page.taxonomies.tags %}
{% for tag in 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 %} {% endfor %}
{% endif %} {% endif %}
</p> </p>

View file

@ -40,7 +40,7 @@
<p class="tagsData"> <p class="tagsData">
{% if page.taxonomies.tags %} {% if page.taxonomies.tags %}
{% for tag in 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 %} {% endfor %}
{% endif %} {% endif %}
</p> </p>