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

35 lines
1.4 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-07-09 13:29:27 +02:00
{% set cta_1 = True %}
{% block content %}
2020-07-09 13:29:27 +02:00
{% for article in articles %}
{% if loop.index != 1 %}
2019-12-23 19:44:46 +01:00
<hr class="mb5 b--none">
{% endif %}
2020-07-09 13:29:27 +02:00
<article class="w-100 mt5-ns gray">
2019-12-23 19:44:46 +01:00
<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.image_url }}"/>
2020-07-02 21:18:30 +02:00
</a>
</figure>
2020-07-06 13:48:05 +02:00
<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>
2020-07-02 21:58:40 +02:00
<h1 class="f2 normal lh-title mt3 ma0 mb3 light-silver">
2020-07-02 22:17:00 +02:00
<a href="{{ article.slug }}" class="link b dim gray">{{ article.title }}</a>
2020-07-02 21:58:40 +02:00
</h1>
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>
2020-07-09 13:29:27 +02:00
</article>
{% endfor %}
{% endblock %}