diff options
| author | horus | 2024-01-16 10:44:35 +0100 |
|---|---|---|
| committer | horus | 2024-01-16 10:44:35 +0100 |
| commit | e6fc8b7adf14a4f3391dcc16028d8db53e108ad8 (patch) | |
| tree | 9a70087caa3a19db4c850da0c4e3c0b22d7353ae /views/snippets | |
| parent | e431f223673f153d774241df470101c9036b7eb5 (diff) | |
| download | moehring-e6fc8b7adf14a4f3391dcc16028d8db53e108ad8.tar.gz | |
.
Diffstat (limited to 'views/snippets')
| -rw-r--r-- | views/snippets/layout.html | 4 | ||||
| -rw-r--r-- | views/snippets/navbar.html | 2 | ||||
| -rw-r--r-- | views/snippets/projects.html | 19 | ||||
| -rw-r--r-- | views/snippets/things.html | 39 |
4 files changed, 64 insertions, 0 deletions
diff --git a/views/snippets/layout.html b/views/snippets/layout.html index 17262b1..9a55ad4 100644 --- a/views/snippets/layout.html +++ b/views/snippets/layout.html @@ -101,6 +101,10 @@ color: #ddd277; } + .included-space { + margin-top: 4rem; + } + </style> <style> {% block css %} diff --git a/views/snippets/navbar.html b/views/snippets/navbar.html index 36524d7..3300ff0 100644 --- a/views/snippets/navbar.html +++ b/views/snippets/navbar.html @@ -15,9 +15,11 @@ <li class="nav-item"> <a class="nav-link {{ is_active('/projects') }}" href="/projects/">/projects</a> </li> + <!-- <li class="nav-item"> <a class="nav-link {{ is_active('/things') }}" href="/things/">/things</a> </li> + --> <li class="nav-item"> <a class="nav-link {{ is_active('/about') }}" href="/about/">/about me</a> </li> diff --git a/views/snippets/projects.html b/views/snippets/projects.html new file mode 100644 index 0000000..c389881 --- /dev/null +++ b/views/snippets/projects.html @@ -0,0 +1,19 @@ + <div class="flavor-text"> + <h1>My Projects</h1> + <em>Stuff I spent my free time on</em> + </div> + + <ul> + <li> + <a href="https://www.fuselkoenig.de" title="Fuselkönig - Supermarkt-Spirituosen im Test">Fuselkönig.de</a> - Blog über Spirituosen, Wein, Cocktails, Bücher und mehr + </li> + <li> + <a href="https://www.kategorischeraperitif.de" title="Der kategorische Aperitif - Essen macht satt, trinken macht glücklich">Der kategorische Aperitif</a> - Sonderangebote von Spirituosen und eine moderne Cocktaildatenbank + </li> + <li> + <a href="https://www.mostdiscussed.com" title="Most Discussed - Good Wikipedia articles and their discussions">MostDiscussed.com</a> - I index and curate good articles from Wikipedia and find where they are discussed on the internet (actually HN). You can actually follow on <a href="https://mastodon.social/@MostDiscussed" title="Follow on Mastodon @MostDiscussed@mastodon.social" target=_blank>{{ source('img/mastodon.svg') }} Mastodon</a> to stay up to date. + </li> + <li> + <a href="https://www.anistats.com" title="anistats - more data about anime than average" rel="nofollow">Anistats.com</a> - I try to build something with historical anime data. Anistats keeps track about how current anime get scored on MyAnimeList.net, and displays the progression over time. + </li> + </ul> diff --git a/views/snippets/things.html b/views/snippets/things.html new file mode 100644 index 0000000..88c2ce6 --- /dev/null +++ b/views/snippets/things.html @@ -0,0 +1,39 @@ +<div class="flavor-text {% if included == true %} included-space {% endif %}"> + <!--h1>Some funny, simple tools</h1--> + <h1>Things</h1> + <em>Stupi.. serious things I needed to exist</em> + </div> + + <ul> + <li> + <a href="/things/faces/" title="Best faces on the net">Best faces on the net</a> + </li> + <li> + <a href="/things/untrack/" title="Entfernt Tracking Parameter aus der URL">untrack</a> - Entfernt Tracking Parameter aus der URL + </li> + <li> + <a href="/things/pizza/" title="Pizzarechner">Pizzarechner</a> + </li> + <li> + <a href="/things/tanz/" title="BPM / Tanz">Click to count BPMs</a> - Tanzbar? + </li> + </ul> + + <div class="flavor-text included-space"> + <h1>iCal- / RSS-Feeds</h1> + <!-- + <em>Fun fact: I structure my whole life around feeds!</em> + --> + </div> + + <ul> + <li> + <a href="/things/zeitumstellung/" title="Zeitumstellung">Zeitumstellung</a> - Als iCal-Feed für deinen Kalender + </li> + <li> + <a href="/feed/dilbert/" title="Dilbert RSS Feed">Dilbert RSS Feed</a> (RIP 💀) - With Images! + </li> + <li> + <a href="/things/ghrss" title="GHRSS">Github Trending Repositories</a> - RSS-Feed + </li> + </ul> |
