Icon Fehler Mobile Ansicht behoben #1

This commit is contained in:
2024-05-12 17:59:56 +02:00
parent b4d001f612
commit b50e8f21e2
3 changed files with 69 additions and 5 deletions

View File

@ -76,18 +76,21 @@
{% endif %}
<footer class="entry-footer">
<span class="posted-on">
<time class="entry-date published updated" datetime="{{ page.date|date(config.system.pages.dateformat.short) }}">{{ 'MONTHS_OF_THE_YEAR'|ta(page.date|date('n') - 1) }} {{ page.date|date(config.system.pages.dateformat.default) }}</time>
<span class="footer-icon">
<i class="fa-solid fa-calendar-days fa-xs"></i>
<time class="entry-date published updated" datetime="{{ page.date|date(config.system.pages.dateformat.short) }}">{{ page.date|date(config.system.pages.dateformat.default) }}</time>
</span>
{% if author.name %}
<span class="byline">
<span class="footer-icon">
<span class="author vcard">
<i class="fa-solid fa-user fa-xs"></i>
{{ author.name }}
</span>
</span>
{% endif %}
{% if page.taxonomy.tag %}
<span class="tags-links">
<span class="footer-icon">
<i class="fa-solid fa-tags fa-xs fa-fw"></i>
{% for tag in page.taxonomy.tag %}
<a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tag }}">{{ tag }}{% if not loop.last %},{% endif %}</a>
{% endfor %}