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

57
.changelog.yml Executable file
View File

@ -0,0 +1,57 @@
# The full repository name
repo: ralf.kirchner/ks-twenty-fifteen
# Service type (gitea or github)
service: gitea
# Base URL for Gitea instance if using gitea service type (optional)
# Default: https://gitea.com
base-url: https://dev.ksite.de
# Changelog groups and which labeled PRs to add to each group
groups:
-
name: BREAKING
labels:
- Kind/Breaking
-
name: FEATURES
labels:
- Kind/Feature
-
name: BUGFIXES
labels:
- Kind/Bug
-
name: ENHANCEMENTS
labels:
- Kind/Enhancement
- Kind/Refactor
- Kind/Ui
-
name: SECURITY
labels:
- Kind/Security
-
name: TESTING
labels:
- Kind/Testing
-
name: TRANSLATION
labels:
- Kind/Translation
-
name: BUILD
labels:
- Kind/Build
- Kind/Lint
-
name: DOCS
labels:
- Kind/Docs
-
name: MISC
default: true
# regex indicating which labels to skip for the changelog
skip-labels: skip-changelog|backport\/.+

View File

@ -114,4 +114,8 @@
.social-navigation a[href*="skype.com"]:before {
content: none;
}
}
.footer-icon {
padding-right: 5px;
}

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 %}