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

{% extends "base.html" %}
{% set title = 'Fair Analytics Blog | Offen Fair Web Analytics' %}
{% 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' %}
{% set bottom_cta = 'index' %}
{% block content %}
<div class="mw8 center cclr-bg-white-responsive mt5-ns">
<div class="dib gray bg-white ph3 ph5-ns pt5">
<h1 class="f2 normal lh-title ma0 mb3">
Fair Analytics Blog
</h1>
<div class="w-75-l">
<p class="ma0 mb5">
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.
</p>
</div>
</div>
<div class="pr5-l">
<div class="flex flex-wrap">
{% for article in articles %}
<div class="w-100 w-50-l">
<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">
<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') }}, {{ article.author }}
</h6>
<h2 class="f3 normal lh-title mt3 ma0 mb3 light-silver">
{% 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 %}
</h2>
<p>
{{ article.description }} <a href="/blog/{{ article.slug }}/" class="link b dim gray">Read more</a>
</p>
</div>
</article>
</div>
{% endfor %}
</div>
</div>
</div>
{% endblock %}