home

project-archive.djhtml

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