Add weekly archive template
- Author
- Maarten Vangeneugden
- Date
- Feb. 11, 2019, 10:22 p.m.
- Hash
- 71731539ebe1fd497bdaa77018632eb0f98d54a7
- Parent
- 85218167e203c1e4c2e317d9a0d2fb995d5f1fbb
- Modified file
- templates/blog/weekly_archive.html
templates/blog/weekly_archive.html ¶
49 additions and 0 deletions.
View changes Hide changes
+ |
1 |
{% load i18n %} |
+ |
2 |
{% load static %} |
+ |
3 |
|
+ |
4 |
{% block stylesheets %} |
+ |
5 |
{{ block.super }} |
+ |
6 |
<style> |
+ |
7 |
a { |
+ |
8 |
color: #2962ff; |
+ |
9 |
} |
+ |
10 |
a:hover { |
+ |
11 |
text-decoration: underline #2962ff; |
+ |
12 |
} |
+ |
13 |
img, video, picture { |
+ |
14 |
max-height: 500px; |
+ |
15 |
} |
+ |
16 |
</style> |
+ |
17 |
{% endblock stylesheets %} |
+ |
18 |
|
+ |
19 |
{% block title %}Weekly | Archief{% endblock title %} |
+ |
20 |
|
+ |
21 |
{% block description %} |
+ |
22 |
Voor een duik terug in de geschiedenis van mijn publieke dagboek. |
+ |
23 |
{% endblock description %} |
+ |
24 |
|
+ |
25 |
{% block main %} |
+ |
26 |
{% with color="brown" accent_color="blue" %} |
+ |
27 |
<div class="row"> |
+ |
28 |
<div class="white offset-m2 col s12 m8 z-depth-2 sheet"> |
+ |
29 |
<p>Dit is het archief van de vorige weekly's, een soort van |
+ |
30 |
"(bijna-)wekelijks" dagboek, waarin ik kort praat over de dingen die er die |
+ |
31 |
week gebeurd zijn. Ik maak vanaf nu ook de vorige posts beschikbaar voor wie |
+ |
32 |
ze wilt inkijken.</p> |
+ |
33 |
</div> |
+ |
34 |
<div class="white offset-m2 col s12 m8 z-depth-2 sheet"> |
+ |
35 |
<h1 id="2017" class="{{ color }}-text">2017</h1> |
+ |
36 |
{{ t2017|safe }} |
+ |
37 |
</div> |
+ |
38 |
<div class="white offset-m2 col s12 m8 z-depth-2 sheet"> |
+ |
39 |
<h1 id="2018" class="{{ color }}-text">2018</h1> |
+ |
40 |
{{ t2018|safe }} |
+ |
41 |
</div> |
+ |
42 |
<div class="white offset-m2 col s12 m8 z-depth-2 sheet"> |
+ |
43 |
<h1 id="2019" class="{{ color }}-text">2019</h1> |
+ |
44 |
{{ t2019|safe }} |
+ |
45 |
</div> |
+ |
46 |
</div> |
+ |
47 |
{% endwith %} |
+ |
48 |
{% endblock main %} |
+ |
49 |