worked on footer

This commit is contained in:
eclipse 2025-02-20 22:34:50 +01:00
parent de725062fd
commit 1b01ffc3b9
3 changed files with 36 additions and 2 deletions

View File

@ -35,11 +35,19 @@ ARTICLE_SAVE_AS = '{category}/{slug}.html'
ARTICLE_LANG_SAVE_AS = '{category}/{slug}.html' ARTICLE_LANG_SAVE_AS = '{category}/{slug}.html'
DEFAULT_DATE = "fs"
DEFAULT_PAGINATION = 5 DEFAULT_PAGINATION = 5
# Uncomment following line if you want document-relative URLs when developing # Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True RELATIVE_URLS = True
###############################################################################
# Main Menu Settings #
###############################################################################
DISPLAY_PAGES_ON_MENU = DISPLAY_CATEGORIES_ON_MENU = False DISPLAY_PAGES_ON_MENU = DISPLAY_CATEGORIES_ON_MENU = False
MENUITEMS = ( MENUITEMS = (
("Werke", ( ("Werke", (

View File

@ -446,6 +446,31 @@ a {
} }
} }
#leave-empty {
display: none;
}
img.impr {
height: 1.2lh;
}
.main-footer {
font-size: calc(var(--pico-font-size) * .7);
a {
color: var(--pico-text-color);
font-weight: bold;
}
}
.muted {
--pico-color: var(--pico-muted-color);
}
.heart {
color: red;
}
/* /*
.article-footer { .article-footer {
margin-left: calc(var(--pico-nav-element-spacing-horizontal) * -1); margin-left: calc(var(--pico-nav-element-spacing-horizontal) * -1);

View File

@ -1,3 +1,4 @@
<div class="container"> <div class="container main-footer" >
<p>Dies ist der Footer. Trololol.</p> {% set t = [ pages | map(attribute="modified") | list | max , articles | map(attribute="modified") | list | max ] | max %}
<p>erstellt mit <a href="https://www.getpelican.com/" target="_blank">Pelican</a> und viel <span class="heart">&#9829;</span> von Tobias Radloff | {{ t.strftime("%Y") }}</p>
</div> </div>