Fix wrong coloring of hyperlinks in about.html
- Author
- Vngngdn
- Date
- Feb. 18, 2017, 7:25 p.m.
- Hash
- 2d7af842436093dd102d34f92c0aa8ba34342899
- Parent
- b9d21737f867e49c53c29a216b4466325fd10757
- Modified file
- templates/about/about.html
templates/about/about.html ¶
11 additions and 11 deletions.
View changes Hide changes
1 |
1 |
{% load i18n %} |
2 |
2 |
{% load static %} |
3 |
3 |
|
4 |
4 |
{% block title %}{% trans "About myself" %}{% endblock title %} |
5 |
5 |
{% block description %}{% blocktrans %}Maarten's personal place on the internet. Make yourself at home!{% endblocktrans %} |
6 |
6 |
{% endblock description %} |
7 |
7 |
{% block main %} |
8 |
8 |
{% with mdac=materialDesign_accentColor %} {# You'll see why this is handy shortly. #} |
9 |
9 |
{% with mdc=materialDesign_color %} |
10 |
10 |
<div class="row"> |
11 |
11 |
<div class="white offset-m2 col s12 m8 z-depth-2 sheet"> |
12 |
12 |
<p> |
13 |
13 |
{% blocktrans %}Why hello! Thanks for stopping by! As I mentioned on my |
14 |
14 |
homepage, My name is Maarten. I'm a {{ age }} y/o hacker, and I dabble in |
15 |
15 |
a lot of things that I enjoy doing. |
16 |
16 |
Some of these things I put on display here, my website, for the world to |
17 |
17 |
see!<br /> |
18 |
18 |
On this page, I talk a bit about myself, my daily routine, what I do, ... |
19 |
19 |
It's not all-encompassing, and I've narrowed it down quite a bit to the most |
20 |
20 |
important things. I plan on sharing more through my upcoming blog, but until |
21 |
21 |
that's done, I hope this is enough to keep you satisfied. |
22 |
22 |
{% endblocktrans %} |
23 |
23 |
</p> |
24 |
24 |
|
25 |
25 |
<h3 class="{{ mdc }}-text">{% trans "What I do/am" %}</h3> |
26 |
26 |
<p> |
27 |
27 |
{% blocktrans %}Well, it's mostly hacking/coding. It's my jam, basically. |
28 |
28 |
I'm doing a lot of other things as well, but they're either not really well |
29 |
29 |
enough developed to talk about, or too minor to mention. Of course, I'm not |
30 |
30 |
stagnant, so I'll be updating this as soon as it's relevant. |
31 |
31 |
{% endblocktrans %} |
32 |
32 |
</p> |
33 |
33 |
<p> |
34 |
34 |
{% blocktrans %}I'm a happy person. True, life is not always joy and |
35 |
35 |
sunshine, but I |
36 |
36 |
always try to look at the bright side! It's just that life's a bit too short |
37 |
37 |
to not be happy, so we might as well make it a gaint party! I offer hugs and |
38 |
38 |
cuddles to whomever wants them, or needs them, just like a shoulder to cry |
39 |
39 |
on, or a simple peptalk. I hope that by doing that, I can make other people |
40 |
40 |
just as happy as myself!{% endblocktrans %} |
41 |
41 |
</p> |
42 |
42 |
<p> |
43 |
43 |
{% blocktrans %}I'm blessed with a set of the best friends one can imagine. |
44 |
44 |
They make life just so amazing, and I hope I can also do that for them. |
45 |
45 |
I try to open myself up to others as much as possible (or at least, as much |
46 |
46 |
as I feel comfortable with), hoping that I can share my |
47 |
47 |
happiness with them as well. All in pursuit of making our world a better |
48 |
48 |
place for everyone!{% endblocktrans %} |
49 |
49 |
</p> |
50 |
50 |
|
51 |
51 |
<h3 class="{{ mdc }}-text">{% trans "Weekly scheduling" %}</h3> |
52 |
52 |
<p> |
53 |
53 |
{% blocktrans %}I'm a student of Informatics at Hasselt University |
54 |
54 |
(coloquially named UHasselt). From Monday to Friday, you can find me here, |
55 |
55 |
most probably studying, or attending classes. |
56 |
56 |
{% endblocktrans %} |
57 |
57 |
</p> |
58 |
58 |
<p> |
59 |
59 |
{% blocktrans %}When not at university, I'm often home, most probably |
60 |
60 |
extremely busy with hugging my 3 dogs. Apart from that (and homework), |
61 |
61 |
my evenings are a mix of several things, like socializing, |
62 |
62 |
coding, writing, hacking my laptop, you get the idea. Also, when I feel like |
63 |
63 |
dabbling in something, I'll make some time for it. |
64 |
64 |
{% endblocktrans %} |
65 |
65 |
</p> |
66 |
66 |
<p> |
67 |
67 |
{% blocktrans %}Weekends are often trying to keep up with what university |
68 |
68 |
threw at me the last week, but I'm at home, so I save an hour or two |
69 |
69 |
not commuting 😄<br /> |
70 |
70 |
This website is my <i>spot</i> on the internet, so this is basically |
71 |
71 |
where I hang out. Sometimes you might run into me while I'm redecorating the |
72 |
72 |
living room, or doing spring cleaning in my code repository. Anyway, if you |
73 |
73 |
want to sit down, you can always do so, I love having people around! 😃 |
74 |
74 |
{% endblocktrans %} |
75 |
75 |
</p> |
76 |
76 |
<h4 class="{{ mdc }}-text">{% trans "A small apology" %}</h4> |
77 |
77 |
<p> |
78 |
78 |
{% blocktrans %}I admit that my website is far from complete. Most of the |
79 |
79 |
things (of which the blog system is most notably absent) are not ready, or |
80 |
80 |
need a lot more love to become fully fledged web applications. I try to |
81 |
81 |
extract time where I can, but maintaining a website (and doing it well), is |
82 |
82 |
not always the most easy job. Different screen sizes, JS compatibility, |
83 |
83 |
enforcing encryption, translating my website (which I do myself), ... |
84 |
84 |
Nevertheless, if I find a free spot somewhere, I might very well be updating |
85 |
85 |
my website. It's satisfying work to see my own place grow under my |
86 |
86 |
fingertips, albeit slower than I want it to.<br /> |
87 |
87 |
Sometimes, it might seem I've not been doing anything on my website for a |
88 |
88 |
while. This might indicate real-life obligations, but might also be |
89 |
89 |
invisible changes to the source code, which are just as important as |
90 |
90 |
anything else I do around here. I hope all this doesn't cause you any |
91 |
91 |
inconvenience, and if it does, please accept my apologies. |
92 |
92 |
{% endblocktrans %} |
93 |
93 |
</p> |
94 |
94 |
|
95 |
95 |
<h3 class="{{ mdc }}-text">{% trans "How I do my computing" %}</h3> |
96 |
96 |
<p> |
97 |
97 |
{% blocktrans %}It's what I do most, so for those interested, I |
98 |
98 |
figured I'd talk about how I do the things with computers =3{% endblocktrans %} |
99 |
99 |
</p> |
100 |
100 |
<p> |
101 |
101 |
{#{% blocktrans %}#}I have a reliable computer that I built myself, and a |
102 |
102 |
companion laptop through university. Both run |
103 |
103 |
<a class="{{mdac}}-text text-accent-3" href="https://archlinux.org">Arch</a>, |
104 |
- | the best |
+ |
104 |
the best |
105 |
105 |
<a class="{{mdac}}-text text-accent-3" href="https://GNU.org">GNU</a>/<a class="{{mdac}}-text text-accent-3" href="https://en.wikipedia.org/wiki/Linux_kernel">Linux</a>distro out there. |
106 |
- | I mostly do my stuff in a terminal with |
+ |
106 |
I mostly do my stuff in a terminal with |
107 |
107 |
<a class="{{mdac}}-text text-accent-3" href="https://neovim.io">NeoVim</a>. |
108 |
- | >80% of my work is text |
+ |
108 |
>80% of my work is text |
109 |
109 |
related, and terminals are just better at that than a fully fledged desktop |
110 |
110 |
environment.<br /> |
111 |
111 |
Languages I prefer (and praise for certain reasons 😁) are |
112 |
112 |
<a class="{{mdac}}-text text-accent-3" href="https://www.rust-lang.org">Rust</a>, |
113 |
- | <a class="{{mdac}}-text text-accent-3" href="https://golang.org/">Go</a>, |
114 |
- | <a class="{{mdac}}-text text-accent-3" href="https://www.python.org/">Python</a>, |
115 |
- | <a class="{{mdac}}-text text-accent-3" href="https://en.wikipedia.org/wiki/C_%28programming_language%29">C</a>, |
116 |
- | and (my current favorite) |
+ |
113 |
<a class="{{mdac}}-text text-accent-4" href="https://golang.org/">Go</a>, |
+ |
114 |
<a class="{{mdac}}-text text-accent-4" href="https://www.python.org/">Python</a>, |
+ |
115 |
<a class="{{mdac}}-text text-accent-4" href="https://en.wikipedia.org/wiki/C_%28programming_language%29">C</a>, |
+ |
116 |
and (my current favorite) |
117 |
117 |
<a class="{{mdac}}-text text-accent-3" href="https://clojure.org">Clojure</a>. |
118 |
- | I run |
+ |
118 |
I run |
119 |
119 |
<a class="">Lineage OS 14.1</a>. |
120 |
120 |
on my phone (In laymen terms: It's basically |
121 |
121 |
a cool and slim Android/Linux 7 with less Google interference).<br /> |
122 |
122 |
Code repositories are <b>always</b> |
123 |
123 |
<a class="{{mdac}}-text text-accent-3" href="https://git-scm.com/">Git</a> |
124 |
- | repos, no exceptions. Depending on |
+ |
124 |
repos, no exceptions. Depending on |
125 |
125 |
the project size, I use a simple dependency listing, or a recognized project |
126 |
126 |
|
127 |
127 |
manager like |
128 |
128 |
<a class="{{mdac}}-text text-accent-3" href="https://leiningen.org/">Leiningen</a> |
129 |
- | or |
+ |
129 |
or |
130 |
130 |
<a class="{{mdac}}-text text-accent-3" href="http://doc.crates.io/">Cargo</a>. |
131 |
- | {#{% endblocktrans %}#} |
+ |
131 |
{#{% endblocktrans %}#} |
132 |
132 |
</p> |
133 |
133 |
|
134 |
134 |
<h3 class="{{ mdc }}-text">{% trans "Wrapping it up // Contacting me" %}</h3> |
135 |
135 |
<p> |
136 |
136 |
{% blocktrans %}I hope you liked what I wrote! The pleasure was all mine, |
137 |
137 |
dear reader =D<br /> |
138 |
138 |
If you want to talk with me about anything, suggest stuff, have a laugh, say |
139 |
139 |
something nice, exchange virtual hugs, or |
140 |
140 |
anything else, I've got a couple of ways you can connect to me: |
141 |
141 |
{% endblocktrans %} |
142 |
142 |
</p> |
143 |
143 |
<ul class="browser-default"> |
144 |
144 |
<li>{% blocktrans %}<b>Mail</b>: |
145 |
145 |
This is the most direct and reliable way to reach me (of all public |
146 |
146 |
ways). If you want to get to me through |
147 |
147 |
good ol' email, you can always |
148 |
148 |
<a class="{{ mdac }}-text text-accent-4" href="mailto:contact_me@maartenv.be">contact_me@maartenv.be</a>. |
149 |
149 |
{% endblocktrans %} |
150 |
150 |
{% comment %} |
151 |
151 |
I have a PGP key for encryption purposes, you can download it |
152 |
152 |
<a class="{{ mdac }}-text text-accent-4" |
153 |
153 |
href="/media/main/pubkey.acm">here</a>. |
154 |
154 |
{% endcomment %} |
155 |
155 |
</li> |
156 |
156 |
<li> |
157 |
157 |
{% blocktrans %}<b> |
158 |
158 |
<a class="{{ mdac }}-text text-accent-4" href="https://tox.chat">Tox</a> |
159 |
159 |
</b> offers its users decentralized and encrypted live chat, on a |
160 |
160 |
multitude of platforms, and is so simple, you don't even need a |
161 |
161 |
phone number or an email address or that jazz to "identify" |
162 |
162 |
yourself, which makes it awesome if you want to stay anonymous. |
163 |
163 |
Despite its young age, it's already pretty stable and fast on p2p |
164 |
164 |
connections. If you want a quick chat with me, add me using |
165 |
165 |
my Tox ID: <br /> |
166 |
166 |
955F4DA92BD174FEB985D57F5283DEA0DCEE757B32E1EBFFF4F13A932D60B07884E12009E019<br /> |
167 |
167 |
You can also simply scan |
168 |
168 |
<a class="{{ mdac }}-text text-accent-4" href="/media/main/tox.png">the QR code</a>, |
169 |
169 |
maybe that's easier =P |
170 |
170 |
{% endblocktrans %} |
171 |
171 |
</li> |
172 |
172 |
<li>{% blocktrans %}<b>Other ways</b> to connect to me are |
173 |
173 |
limited/reserved to a specific public. You'll probably know it when it's |
174 |
174 |
not listed here =P{% endblocktrans %}</li> |
175 |
175 |
</ul> |
176 |
176 |
|
177 |
177 |
</div> |
178 |
178 |
</div> |
179 |
179 |
{% endwith %} |
180 |
180 |
{% endwith %} |
181 |
181 |
{% endblock main %} |
182 |
182 |