mirror of
https://github.com/Speyll/anemone.git
synced 2024-11-21 20:56:29 +00:00
changed tags slightly
This commit is contained in:
parent
c6d4a0f53b
commit
63f83cebb7
4 changed files with 6 additions and 4 deletions
|
@ -4,4 +4,6 @@ path = "blog"
|
||||||
title = "All blog posts"
|
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)*
|
|
@ -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;
|
||||||
|
|
|
@ -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 }}">/{{ tag }}/</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -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 }}">/{{ tag }}/</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in a new issue