2019-12-13 12:24:58 +01:00
{% extends "base.html" %}
2020-12-17 10:49:31 +01:00
{% set title = 'Blog | Offen' %}
{% set description = 'We are Frederik and Hendrik. Here we post about how we are building a fair and open web analytics tool and what we discovered along the way.' %}
2019-12-13 12:24:58 +01:00
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
2020-08-06 11:02:17 +02:00
{% set bottom_cta = 'index' %}
2019-12-13 12:24:58 +01:00
{% block content %}
2020-12-17 10:38:49 +01:00
< div class = "mw8 center cclr-bg-white-responsive mt5-ns" >
< div class = "dib gray bg-white ph3 ph5-ns pt5" >
< h2 class = "f25 normal lh-title ma0 mt4 mb3" >
Offen Blog
< / h2 >
< div class = "w-75-l" >
< p class = "ma0 mb5" >
2020-12-17 10:49:31 +01:00
Hi there. We are Frederik and Hendrik. Here we post about how we are building a fair and open web analytics tool and what we discovered along the way.
2020-12-17 10:38:49 +01:00
< / p >
< / div >
< / div >
< div class = "pr5-l" >
< div class = "flex flex-wrap" >
{% for article in articles %}
< div class = "w-100 w-50-l" >
{% if loop.index != 1 %}
< hr class = "b--none db dn-l" >
{% endif %}
< article class = "w-100 mt5 mt0-l mt0-l gray" >
< div class = "mw8 center pv5 ph3 ph5-m pr0-l pl5-l bg-white" >
< figure class = "larger-image mb4" >
< a href = "/blog/{{ article.slug }}/" >
< img alt = "{{ article.title }}" src = "{{ article.image_url }}" / >
< / a >
< / figure >
< h6 class = "f5 lh-solid normal ma0 light-silver" >
{{ article.date | strftime('%d %b %Y') }}{% if article.modified %}(article.updated {{ article.modified | strftime('%d %b %Y') }}){% endif %}, {{ article.author }}
< / h6 >
< h1 class = "f26 normal lh-title mt3 ma0 mb3 light-silver" >
< a href = "/blog/{{ article.slug }}/" class = "link b dim gray" > {{ article.title }}< / a >
< / h1 >
< p >
{{ article.description }} < a href = "/blog/{{ article.slug }}/" class = "link b dim gray" > Read more< / a >
< / p >
< / div >
< / article >
2020-08-05 20:58:15 +02:00
< / div >
2020-12-17 10:38:49 +01:00
{% endfor %}
2019-12-13 12:24:58 +01:00
< / div >
2020-08-05 20:58:15 +02:00
< / div >
< / div >
2019-12-13 12:24:58 +01:00
{% endblock %}