{% load i18n %} {% get_current_language as LANGUAGE_CODE %}

{% trans "Featured" %}

{% for post in featured_posts %}
thumbnail
{% if LANGUAGE_CODE == "de" %}
{{ post.title_de }}{{ post.subtitle }}

{{ post.desc_de }}

{% elif LANGUAGE_CODE == "en" %}
{{ post.title_en }}{{ post.subtitle }}

{{ post.desc_en }}

{% else %}
{{ post.title_en }}{{ post.subtitle }}

Some quick example text to build on the card title and make up the bulk of the card's content.

{% endif %}
  • {% translate "category" %}: {{ post.category.name }}
  • {% for keyword in post.keywords.all %} {% if LANGUAGE_CODE == "de" %}
  • {{ keyword.text_de }}
  • {% elif LANGUAGE_CODE == "en" %}
  • {{ keyword.text_en }}
  • {% else %}
  • {{ keyword.text_en }}
  • {% endif %} {% endfor %}
  • {% translate "go to blogpost" %}
{% endfor %}