small changes

This commit is contained in:
eclipse 2025-03-06 17:33:27 +01:00
parent 9e03a6c56c
commit d4da1dee46
2 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@
{% block content_body %} {% block content_body %}
<article id="article-body"> <article id="article-body">
<div class="body-column-text"> <div class="body-column-text">
{% if article.content | length is not eq(0) %}{{ article.content }}{% endif %} {% if article.content | length is not eq(0) %}{{ article.content | safe }}{% endif %}
{% if article.klappentext %} {% if article.klappentext %}
<h2>Klappentext</h2> <h2>Klappentext</h2>
<blockquote>{{ article.klappentext }}</blockquote> <blockquote>{{ article.klappentext | e }}</blockquote>
{% endif %} {% endif %}
</div> </div>
<div class="body-column-img"> <div class="body-column-img">

View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content_body %} {% block content_body %}
{% for p in pages if p.title == "Index" %} {% for p in pages if p.title == "Index" %}
{% set lr = cycler("row", "row-reverse") %} {% set lr = cycler("row-reverse", "row") %}
{% if p.featured is defined %} {% if p.featured is defined %}
<div class="index-featured"></div> <div class="index-featured"></div>
{% endif %} {% endif %}