2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/theme/templates/archives.html

56 lines
2.3 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% set title = 'Fair Analytics Blog | Offen' %}
2020-12-17 10:49:31 +01:00
{% 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.' %}
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
2020-08-06 11:02:17 +02:00
{% set bottom_cta = 'index' %}
{% 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">
2022-05-05 14:50:34 +02:00
<h1 class="f2 normal lh-title ma0 mb3">
Fair Analytics Blog
2021-03-16 21:17:18 +01:00
</h1>
2020-12-17 10:38:49 +01:00
<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">
2021-01-03 21:17:10 +01:00
<article class="w-100 mt0-l mt0-l gray">
<div class="mw8 center pt3 pb5 ph3 ph5-m pr0-l pl5-l bg-white">
<figure class="larger-image ma0 mb4">
2020-12-17 10:38:49 +01:00
<a href="/blog/{{ article.slug }}/">
<img alt="{{ article.title }}" src="{{ article.image_url }}"/>
</a>
</figure>
<h6 class="f5 lh-solid normal ma0 light-silver">
2021-04-16 21:54:21 +02:00
{{ article.date | strftime('%d %b %Y') }}, {{ article.author }}
2020-12-17 10:38:49 +01:00
</h6>
2021-03-16 21:17:18 +01:00
<h2 class="f3 normal lh-title mt3 ma0 mb3 light-silver">
2020-12-28 22:17:09 +01:00
{% if not article.must_read %}
<a href="/blog/{{ article.slug }}/" class="link b dim gray">{{ article.title }}</a>
{% else %}
<em>
<a href="/blog/{{ article.slug }}/" class="link b dim gray">{{ article.title }}</a>
</em>
{% endif %}
2021-03-16 21:17:18 +01:00
</h2>
2020-12-17 10:38:49 +01:00
<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 %}
</div>
2020-08-05 20:58:15 +02:00
</div>
</div>
{% endblock %}