fnRequest, pongo2-addons added
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sebastian Frank
2019-02-27 15:58:10 +01:00
parent 4c2a13d6b5
commit 8f1345d4aa
13 changed files with 132 additions and 7 deletions

View File

@@ -0,0 +1,31 @@
{% 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 %}
<h2>
<small>{{ e.date }}</small>
{{ e.title }}
</h2>
{{ e.teaser|markdown }}
{% if e.body %}
<a href="{{ e.title|slugify }}" class="btn">mehr lesen</a>
{% 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 %}
<h2>
<small>{{ e.date }}</small>
{{ e.title }}
</h2>
{{ e.teaser|markdown }}
{% if e.body %}
<a href="{{ e.title|slugify }}" class="btn">mehr lesen</a>
{% endif %}
{% endfor %}
{% endblock part1 %}