2018-04-24 19:47:44 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Lectures passées{% endblock %}
|
|
|
|
{% block description %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2019-05-28 05:48:26 +00:00
|
|
|
<div class="uk-width-4-5@m">
|
2019-05-28 23:46:21 +00:00
|
|
|
<h1 class="uk-heading-primary">Lectures passées</h1>
|
2018-04-24 19:47:44 +00:00
|
|
|
|
|
|
|
<div class="uk-grid">
|
|
|
|
{% for reading in READINGS %}
|
2019-05-28 05:48:26 +00:00
|
|
|
<figure class="uk-width-1-1 uk-width-small-1-2 uk-width-1-3@m">
|
2019-02-08 10:13:48 +00:00
|
|
|
<img class="uk-thumbnail" src="{{ reading['img_url'] }}" alt="{{ reading['description']+' '+reading.get('date', '') }}">
|
|
|
|
<figcaption>{{ reading['description']+' '+reading.get('date', '') }}</figcaption>
|
2018-04-24 19:47:44 +00:00
|
|
|
</figure>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|