Skip to content

Commit 251fb20

Browse files
committed
Update home, add pronouns
1 parent 07a7cd9 commit 251fb20

File tree

7 files changed

+76
-9
lines changed

7 files changed

+76
-9
lines changed

config.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ highlight_themes_css = [
1313
extra_syntaxes_and_themes = ["syntaxes"]
1414

1515
[extra]
16+
default_language = "en"
1617
menu = [
1718
{ name = "Home", url = "/" },
1819
{ name = "Blog", url = "/blog" },

content/_index.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ title = "Tau's Website"
33
template = "introduction.html"
44
+++
55

6-
I'm studying mathematics at the [University of Zurich][UZH].
6+
I'm passionate about programming, plants and solving puzzles.
7+
78
In my spare time I enjoy coding on one of my many side projects. I love playing
8-
video games, especially puzzle and story
9-
driven ones.
9+
video games, especially puzzle and story driven ones.
1010

11-
Every month or so I organize a [game night]
12-
for my friends and acquaintances from uni.
11+
Every month or so I organize a fun and cozy [game night] for my friends.
1312

1413
Visit my [GitHub profile] if you're interested
1514
in what I'm currently working on.
@@ -19,12 +18,15 @@ I very infrequently post things on [Mastodon].
1918
## Contact
2019

2120
I love getting email—from non-spammers that is ^^ \
22-
Send your messages to `public-inbox (at) tau.garden`.
21+
Send your messages to <span id="email" class="_targetable">`public-inbox (at) tau.garden`</span>.
2322

2423
Instead of opening a pull request on GitHub,
2524
you may also send patches to `patches (at) tau.garden`.
2625

27-
[UZH]: https://uzh.ch
26+
---
27+
28+
Not sure how to talk about me (i.e. what pronouns to use)? I put together a [helpful page](/pronouns).
29+
2830
[game night]: https://game-night.tau.garden
2931
[GitHub profile]: https://github.com/bash
3032
[Mastodon]: https://hachyderm.io/@tautropfli

content/anrede.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
+++
2+
title = "Tau's Anrede & Pronomen"
3+
[extra]
4+
markdown_title = "Anrede & Pronomen"
5+
language = "de"
6+
+++
7+
8+
<small>Also available in [English](/pronouns).</small>
9+
10+
Wow – danke, dass Du mich danach fragst! ☺️
11+
12+
Bei den Pronomen stehen dir verschieden Optionen zur Wahl:
13+
14+
Am einfachsten ist es, wenn du für mich keine Pronomen verwendest,
15+
also statt einem Pronomen immer meinen Vornamen *Tau* sagst.
16+
Also beispielsweise: «*Tau* hat sehr viel Arbeit in dieses Projekt gesteckt–*Tau* kann sehr stolz auf sich sein!»
17+
18+
Falls Du magst, darfst Du natürlich gerne ein Neopronomen
19+
wie *dey* oder *hen* verwenden, um über mich zu sprechen.
20+
21+
Menschen, die mich etwas besser kennen, dürfen auch gerne das sächliche Pronomen *es* verwenden. Also zum Beispiel:
22+
«Lass dich von den komischen Geräuschen bloss nicht irritieren: *Es* hat seinen Frühstückskaffee noch nicht getrunken.»
23+
24+
In einer E-Mail oder einem Brief darfst du mich selbstverständlich mit meinem Vornamen ansprechen:
25+
*«Hi Tau»*, *«Hallo Tau»* oder *«Guten Tag Tau»* sind alles tolle Optionen.
26+
27+
Falls es etwas höflicher sein soll, so sprich mich bitte nicht mit *«Herr»* oder *«Frau»* an.
28+
Verwende stattdessen meinem vollen Namen. *«Guten Tag Tau Gärtli»* ist die einfachste Möglichkeit.
29+
30+
Bitte verwende keine männlichen Gruppenbezeichnungen wie *«Herren»* oder *«Jungs»*
31+
um über eine Gruppe zu sprechen, zu der ich dazu gehöre. Verwende stattdessen Alternativen wie z.B. *«Team»*, *«Leute»* oder *«Gruppe»*.
32+
33+
[Schreib mir](/#email) einfach eine E-Mail falls du noch Fragen hast.

content/pronouns.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
+++
2+
title = "Tau's Pronouns"
3+
[extra]
4+
markdown_title = "Pronouns"
5+
+++
6+
7+
<small>Dies Seite gibt's auch auf [Deutsch](/anrede).</small>
8+
9+
Thank you for asking, I appreciate it! ☺️
10+
11+
The easiest way to refer to me is by my first name *Tau*
12+
or by using gender neutral pronouns such as *they/them* or *it*.
13+
14+
In a formal setting, *they/them* works best. For example: \
15+
«*Tau* put a lot of work into this—*they* must be really proud of the result.»
16+
17+
In a more informal setting, *they/them* or *it* both work equally well: \
18+
«Don't mind the weird noises—*it* hasn't had *its* morning coffee yet.»
19+
20+
Please don't use group expressions such as *guys* or *men*
21+
when referring to a group that I'm a part of. There are many awesome
22+
alternatives available such as *team*, *folks*, *peeps*, *comrades*, and many more.
23+
24+
If you have any questions, don't hesitate to [ask](/#email).

sass/main.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,13 @@ ul {
199199
margin-bottom: 0;
200200
}
201201

202+
._targetable:target {
203+
outline: 1px solid var(--accent-color);
204+
text-shadow: var(--accent-color) 1px 0 10px;
205+
border-radius: .2em;
206+
margin: 0 .5ex;
207+
}
208+
202209
.post-list {
203210
list-style-type: none;
204211
padding: 0;

templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="{% if page and page.extra.language %}{{page.extra.language}}{% else %}{{config.extra.default_language}}{% endif %}">
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">

templates/introduction.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<section>
99
<header>
1010
<h1>Hi, I’m Tau!</h1>
11-
<p>I love coding schtuff and doing maths.</p>
11+
<p>Welcome to my personal website.</p>
1212
</header>
1313

1414
{{section.content | safe}}

0 commit comments

Comments
 (0)