diff --git a/theme/static/css/custom.css b/theme/static/css/custom.css index 8d99725..5dd2057 100644 --- a/theme/static/css/custom.css +++ b/theme/static/css/custom.css @@ -480,6 +480,14 @@ article form { li { list-style: none; + + ul { + margin-top: calc(var(--pico-typography-spacing-vertical) * 0.25); + } + } + + li:has(+li>ul) { + margin-bottom: var(--pico-typography-spacing-vertical); } } diff --git a/theme/templates/article.html b/theme/templates/article.html index 1f13274..987b024 100644 --- a/theme/templates/article.html +++ b/theme/templates/article.html @@ -20,9 +20,10 @@
{% if article.content | length is not eq(0) %} - {{ article.content }} + {{ article.content }} {% endif %} {% if article.stats or article.tags %} +

Details

    @@ -33,6 +34,12 @@ {% if article.stats.series %}
  • aus der Reihe "{{ article.stats.series }}"
  • {% endif %} + {% if article.stats.issue %} +
  • Ausgabe {{ article.stats.issue }}
  • + {% endif %} + {% if article.stats.editor %} +
  • herausgegeben von {{ article.stats.editor }}
  • + {% endif %} {% if article.stats.published_in %} {% for p in article.stats.published_in %} {% if p.title %} @@ -68,7 +75,7 @@
  • Leseprobe verfügbar
  • {% endif %} {% if p.link and p.link_text %} -
  • {{ p.link_text }}
  • +
  • {{ p.link_text }}
  • {% endif %} {% if p.title %}
@@ -81,7 +88,7 @@
  • Schlagworte:
  • @@ -98,8 +105,10 @@ {{ fi(i.pic, i.link, i.alt, i.title, i.credit, i.credit_link) }} {% endif %} {% if article.klappentext %} -

    Klappentext

    -
    {{ article.klappentext }}
    +
    +

    Klappentext

    +
    {{ article.klappentext }}
    +
    {% endif %}
    diff --git a/theme/templates/tag.html b/theme/templates/tag.html index 858063e..9983417 100644 --- a/theme/templates/tag.html +++ b/theme/templates/tag.html @@ -2,7 +2,7 @@ {% block content_header %}
    -

    {{ tag }} (Schlagwort)

    +

    Schlagwort: {{ tag }}

    {% endblock content_header %}