Add project archive template
- Author
- Maarten Vangeneugden
- Date
- Oct. 10, 2020, 3:41 p.m.
- Hash
- ec4af83f5357398b370bf998d6d6409f49fdafbb
- Parent
- 75e68f523b705b03bf99c0741966ab220766fd04
- Modified file
- templates/about/project-archive.djhtml
templates/about/project-archive.djhtml ¶
60 additions and 0 deletions.
View changes Hide changes
+ |
1 |
{% load i18n %} |
+ |
2 |
{% load static %} |
+ |
3 |
|
+ |
4 |
{% block title %}{% trans "Project archive" %}{% endblock title %} |
+ |
5 |
{% block description %}{% blocktrans %}Some old projects that I attached an |
+ |
6 |
"obsolete" tag to.{% endblocktrans %} |
+ |
7 |
{% endblock description %} |
+ |
8 |
{% block header %} |
+ |
9 |
<header> |
+ |
10 |
<h1>{% trans "Maarten's website" %}</h1> |
+ |
11 |
<label for="nav-drawer-toggle">≡</label> |
+ |
12 |
</header> |
+ |
13 |
{% endblock header %} |
+ |
14 |
|
+ |
15 |
{% block nav %} |
+ |
16 |
<input id="nav-drawer-toggle" type="checkbox" /> |
+ |
17 |
<nav> |
+ |
18 |
<label for="nav-drawer-toggle"><!--🡨-->🡠</label> |
+ |
19 |
<h2>{% trans "Navigation" %}</h2> |
+ |
20 |
<a class="nav-link" href="{% url 'about-index' %}">{% trans "Front page" %}</a> |
+ |
21 |
</nav> |
+ |
22 |
{% endblock nav %} |
+ |
23 |
{% block main %} |
+ |
24 |
<section class="emphasis"> |
+ |
25 |
<p> |
+ |
26 |
{% blocktrans %}I collect the parts of my website here that are now |
+ |
27 |
obsolete, for the purpose of archiving them if somebody wants to see |
+ |
28 |
them. |
+ |
29 |
{% endblocktrans %} |
+ |
30 |
</p> |
+ |
31 |
</section> |
+ |
32 |
<section> |
+ |
33 |
<h2>{% trans "Ghent University elections 2019" %}</h2> |
+ |
34 |
<p> |
+ |
35 |
{% blocktrans %}In 2020, Jonathan and I were canditates for the |
+ |
36 |
Board of Governors at Ghent University. If you want to know what |
+ |
37 |
we want(ed) to change, then this is the place for you. |
+ |
38 |
{% endblocktrans %} |
+ |
39 |
</p> |
+ |
40 |
{% get_current_language as LANGUAGE_CODE %} |
+ |
41 |
{% get_language_info for LANGUAGE_CODE as lang %} |
+ |
42 |
<a class="btn outline" href="{% url "ugent2020-index" lang.code %}"> |
+ |
43 |
{% trans "View project page" %}</a> |
+ |
44 |
|
+ |
45 |
<h2>{% trans "Quotebook" %}</h2> |
+ |
46 |
{# Quotebook card #} |
+ |
47 |
{#<img src="/media/main/Quotebook.jpg" />#} |
+ |
48 |
{#<!--Image © CC-BY 2014 Karel Hemerijckx#} |
+ |
49 |
{#(https://nl.wikipedia.org/wiki/Universiteit_Hasselt#/media/File:Campus_Diepenbeek.jpg)-->#} |
+ |
50 |
<p> |
+ |
51 |
{% blocktrans %}When I was a student at Hasselt University, I |
+ |
52 |
maintained a quotebook as special treat for my buddies of |
+ |
53 |
Informatics. An amazing time that's long past now, but I keep a |
+ |
54 |
little link to the project because nostalgia is comforting. |
+ |
55 |
{% endblocktrans %} |
+ |
56 |
</p> |
+ |
57 |
<a class="btn outline" href="{% url "ITdays-index" %}">{% trans "Open quotebook" %}</a> |
+ |
58 |
</section> |
+ |
59 |
{% endblock main %} |
+ |
60 |