You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/jdav_web/startpage/templates/startpage/aktuelles.html

22 lines
541 B
HTML

{% extends "startpage/base_subsite.html" %}
{% load static %}
{% load markdownify %}
{% load markdown_extras %}
{% block content %}
<h1>Aktuelles</h1>
{% for post in posts %}
<div class="post-preview">
<a href="{% url 'startpage:post' post_name=post.urlname section_name='aktuelles' %}"><h3>{{ post.title }}</h3></a>
<p>
{{ post.website_text|markdownify|truncatechars:200 }}
<a href="{% url 'startpage:post' post_name=post.urlname section_name='aktuelles' %}">weiterlesen</a>
</p>
</div>
{% endfor %}
{% endblock %}