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' %}
2020-07-02 21:18:30 +02:00
{% set description = 'Developing an open alternative to common web analytics tools. Gain insights while your users have full access to their data. Lightweight, self hosted and free.' %}
2019-12-13 12:24:58 +01:00
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
2020-04-27 21:51:46 +02:00
{% set cta_1 = '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" >
2020-07-02 21:18:30 +02:00
< figure class = "larger-image mb4" >
< a href = "{{ article.slug }}" >
< img alt = "{{ article.title }}" src = "{{ article.sm_image_url }}" / >
< / a >
< / figure >
2020-07-02 21:58:40 +02:00
< h1 class = "f2 normal lh-title mt3 ma0 mb3 light-silver" >
2020-07-02 22:17:00 +02:00
< a href = "{{ article.slug }}" class = "link b dim gray" > {{ article.title }}< / a >
2020-07-02 21:58:40 +02:00
< / h1 >
2020-07-02 21:18:30 +02:00
< p class = "" >
{{ article.description }} < a href = "{{ article.slug }}" class = "link b dim gray" > Read more< / a >
< / p >
2019-12-13 12:24:58 +01:00
< / div >
< / div >
{% endfor %}
{% endblock %}