2019-12-13 12:24:58 +01:00
{% extends "base.html" %}
2019-12-23 19:44:46 +01:00
{% set title = 'Fair analytics blog | Offen' %}
{% set description = 'Developing Offen. A free and open source analytics software for websites and web applications that allows respectful handling of data.' %}
2019-12-13 12:24:58 +01:00
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
2019-12-23 19:44:46 +01:00
{% set is_article = 'true' %}
2019-12-13 12:24:58 +01:00
{% block content %}
{% for article in articles %}
{% if loop.index != 1 %}
2019-12-23 19:44:46 +01:00
< hr class = "mb5 b--none" >
2019-12-13 12:24:58 +01:00
{% endif %}
2019-12-23 19:44:46 +01:00
< div class = "w-100 mt5-ns gray" >
< div class = "mw7 center pt5 pb5 ph3 ph5-ns bg-white" >
2019-12-13 12:24:58 +01:00
{{ article.content }}
< / div >
< / div >
{% endfor %}
{% endblock %}