Skip to content
Snippets Groups Projects
Commit 64c2dabd authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

Fix tag displaying

parent f4f8096a
Branches
No related tags found
No related merge requests found
......@@ -140,3 +140,12 @@ nav input[type="search"] {
.side-nav a.collapsible-header {
margin: 0;
}
/* Article */
h2#title {
margin-bottom: 0px;
}
.author {
margin-bottom: 1rem;
}
{% include "partials/header" %}
<div class="section">
<h2 id="title">{{ metadata.title }}</h2>
<span style="color: #a2a2a2">
<div class="author" style="color: #a2a2a2">
{% if metadata.date %}
<span style="color: #626262">{{ metadata.date.creation | date("D. M. YYYY") }}</span>
napsal
......@@ -12,13 +12,13 @@
{% else %}
Článek není v gitu
{% endif %}
</span>
</div>
<div>
{% if metadata.categories %}
{% for category in metadata.categories %}
<a href="/categories/{{ category }}"><div class="chip">{{ category }}</div></a>
{% endfor %}
{% endif %}
{% for tag in metadata.tags %}
{% if tag.url != "clanek" %}
<a href="{{ config.baseurl }}/tag/{{ tag.url }}"><div class="chip">{{ tag.text }}</div></a>
{% endif %}
{% endfor %}
<article>
<p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment