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

30 lines
1.0 KiB
HTML
Raw Normal View History

{% 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.' %}
{% set href = 'blog/' %}
{% set no_stats = False %}
{% set template = 'archives' %}
2020-04-27 21:51:46 +02:00
{% set cta_1 = 'true' %}
{% block content %}
{% for article in articles %}
{% if loop.index != 1 %}
2019-12-23 19:44:46 +01:00
<hr class="mb5 b--none">
{% 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-01 13:57:52 +02:00
{{ article.summary }}
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>
</div>
</div>
{% endfor %}
{% endblock %}