{% extends 'base.html' %}
{% block part0 %}
{{ Body }}
{% for e in fnRequest("https://cockpit.basiscms.de/api/collections/get/mark2webBlog?filter[published]=true&sort[date]=-1&limit=1").entries %}
{{ e.date }}
{{ e.title }}
{{ e.teaser|markdown }}
{% if e.body %}
mehr lesen
{% endif %}
{% endfor %}
{% endblock part0 %}
{% block part1 %}
{% comment %}
limit wird für skip in Query gebraucht
{% endcomment %}
{% for e in fnRequest("https://cockpit.basiscms.de/api/collections/get/mark2webBlog?filter[published]=true&sort[date]=-1&skip=1&limit=100").entries %}
{{ e.date }}
{{ e.title }}
{{ e.teaser|markdown }}
{% if e.body %}
mehr lesen
{% endif %}
{% endfor %}
{% endblock part1 %}