Change base template to base.html
- Author
- Maarten 'Vngngdn' Vangeneugden
- Date
- July 9, 2017, 8:40 p.m.
- Hash
- d858a92b89c8cfed497644fe9bd7d8b462b53fba
- Parent
- c8f4456711e528d5fc757b2acf327f95c49b7697
- Modified file
- templates/about/index.html
templates/about/index.html ¶
1 addition and 1 deletion.
View changes Hide changes
1 |
- | {% load i18n %} |
+ |
1 |
{% load i18n %} |
2 |
2 |
|
3 |
3 |
{% block title %}{% trans "Maarten | Main page" %}{% endblock title %} |
4 |
4 |
{% block header %} |
5 |
5 |
{#{% include "website/navbar.html" %}#} |
6 |
6 |
{#{{ block.super }}#} |
7 |
7 |
{% comment %}{% if quote.link %} |
8 |
8 |
<p class="container white-text"> |
9 |
9 |
<a class="white-text" href="{{ quote.link }}" target="_blank"> |
10 |
10 |
{% endif %} |
11 |
11 |
{{ quote.author }} |
12 |
12 |
{% if quote.link %} |
13 |
13 |
</a> |
14 |
14 |
{% endif %} |
15 |
15 |
</p> |
16 |
16 |
{% endcomment %} |
17 |
17 |
</div> |
18 |
18 |
{% endblock header %} |
19 |
19 |
{% block description %}{% blocktrans %}Maarten's personal place on the internet. Make yourself at home!{% endblocktrans %} |
20 |
20 |
{% endblock description %} |
21 |
21 |
{% block main %} |
22 |
22 |
{% with mdac=materialDesign_accentColor %} {# You'll see why this is handy shortly. #} |
23 |
23 |
{% with mdc=materialDesign_color %} {# You'll see why this is handy shortly. #} |
24 |
24 |
<div class="parallax--"> |
25 |
25 |
<div class="parallax_group"> |
26 |
26 |
<div class="parallax_layer parallax_layer-base"> |
27 |
27 |
<header> |
28 |
28 |
{% include "website/navbar.html" %} |
29 |
29 |
</header> |
30 |
30 |
<div class="section {{ materialDesign_color }} lighten-2"> |
31 |
31 |
<p class="flow-text container white-text">{{ status }}</p> |
32 |
32 |
</div> |
33 |
33 |
{# TODO: Make the "quote section" less obtrusive, i.e. make it smaller #} |
34 |
34 |
<div class="section {{ materialDesign_color }} z-depth-3"> |
35 |
35 |
<div class="container"> |
36 |
36 |
<div class="white-text"> |
37 |
37 |
<h3>{% trans "Welcome!" %}</h3> |
38 |
38 |
<p> |
39 |
39 |
{% blocktrans %}Hello there! I'm Maarten, a happy |
40 |
40 |
hacker from Belgium, and this is my amazing personal website. |
41 |
41 |
I like a lot of things, and I share some of those in here. Take |
42 |
42 |
a look around, read a bit, talk with me, and most importantly, |
43 |
43 |
enjoy your stay!{% endblocktrans %} |
44 |
44 |
</p> |
45 |
45 |
</div> |
46 |
46 |
</div> |
47 |
47 |
</div> |
48 |
48 |
</div> |
49 |
49 |
<div class="parallax_layer parallax_layer-back"> |
50 |
50 |
{{ parallax_src|safe }} |
51 |
51 |
</div> |
52 |
52 |
<!--</div> |
53 |
53 |
<div class="parallax_group">--> |
54 |
54 |
<div class="parallax_layer parallax_layer-base"></div> |
55 |
55 |
</div> |
56 |
56 |
<div class="parallax_group"> |
57 |
57 |
<div class="parallax_layer parallax_layer-base"> |
58 |
58 |
<div class="section white"> |
59 |
59 |
{% include "about/main_content.html" %} |
60 |
60 |
</div> |
61 |
61 |
{% include "website/footer.html" %} |
62 |
62 |
</div> |
63 |
63 |
</div> |
64 |
64 |
</div> |
65 |
65 |
{% endwith %} |
66 |
66 |
{% endwith %} |
67 |
67 |
{% endblock main %} |
68 |
68 |
|
69 |
69 |
{% block footer %} |
70 |
70 |
{% endblock footer %} |
71 |
71 |