home

websites.djhtml

1
{% extends "website/base.djhtml" %}
2
{% load i18n %}
3
{% load static %}
4
5
{% block title %}{% translate "Web of important sites" %}{% endblock title %}
6
{% block description %}{% blocktranslate %}
7
Collecting and listing those websites that I think deserve to be listed.
8
{% endblocktrans %}
9
{% endblock description %}
10
{% block main %}
11
<section>
12
<h3><a href="https://frankdeboosere.be" target="_blank">frankdeboosere.be</a></h3>
13
<p>{% blocktranslate %}
14
15
{% endblocktranslate %}</p>
16
<h3><a href="https://taaltelefoon.be" target="_blank">taaltelefoon.be</a></h3>
17
<p>{% blocktranslate %}
18
    The 'Taaltelefoon' is a project of the Flemish government that lists a lot
19
    of information about the spelling and grammar in Dutch and Flemish. It also
20
    gives advice about when and how to apply the rules of the Dutch language
21
    properly. It's my first stop for these questions and almost always my last.
22
{% endblocktranslate %}</p>
23
<h3><a href="https://nielsv.be" target="_blank">nielsv.be</a></h3>
24
<p>{% blocktranslate %}
25
    My brother is a proud interior architect with an impressive portfolio and
26
    who's already been featured in Belgian newspapers. The best place to read
27
    all about that is his own website, so take a look there if you're curious!
28
{% endblocktranslate %}</p>
29
</section>
30
{% endblock main %}
31