2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00

add blog header

This commit is contained in:
Hendrik Niefeld 2020-12-17 10:38:49 +01:00
parent 76a7245222
commit 4d0e53c873

View File

@ -8,14 +8,25 @@
{% set bottom_cta = 'index' %}
{% block content %}
<div class="mw8 center cclr-bg-white-responsive pr5-l">
<div class="flex flex-wrap mt0 mt5-l">
<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">
Hi there. We are Frederik and Hendrik. Here we post about how we're building a fair and open web analytics tool and what we're discovering 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">
{% if loop.index != 1 %}
<hr class="mb5 b--none db dn-l">
<hr class="b--none db dn-l">
{% endif %}
<article class="w-100 mt5-m mt0-l gray">
<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 }}/">
@ -37,4 +48,5 @@
{% endfor %}
</div>
</div>
</div>
{% endblock %}