summaryrefslogtreecommitdiff
path: root/views/tools.html
blob: d522d67b5181d48ca963e210bfdef410458a5814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% extends "snippets/layout.html" %}

{% block title "tools | Maximilian Möhring" %}

{% block css %}
.feed-flavor {
	margin-top: 4rem;
}
{% endblock %}
{% block main %}

<div class="container">

	<div class="flavor-text">
		<h1>Some funny, simple tools</h1>
		<em>Stupi.. serious things I needed to exist</em>
	</div>

	<ul>
		<li>
			<a href="/tools/faces/" title="Best faces on the net">Best faces on the net</a>
		</li>
		<li>
			<a href="/tools/untrack/" title="Entfernt Tracking Parameter aus der URL">untrack - Entfernt Tracking Parameter aus der URL</a>
		</li>
		<li>
			<a href="/tools/pizza/" title="Pizzarechner">Pizzarechner</a>
		</li>
		<li>
			<a href="/tools/tanz/" title="BPM / Tanz">Click to count BPMs - Tanzbar?</a>
		</li>
	</ul>

	<div class="flavor-text feed-flavor">
		<h1>iCal- / RSS-Feeds</h1>
		<!--
		<em>Fun fact: I structure my whole life around feeds!</em>
		-->
	</div>

	<ul>
		<li>
			<a href="/tools/zeitumstellung/" title="Zeitumstellung">Zeitumstellung - Als iCal-Feed für deinen Kalender</a>
		</li>
		<li>
			<a href="/feed/dilbert/" title="Dilbert RSS Feed">Dilbert RSS Feed. With Images!</a>
		</li>
		<li>
			<a href="/tools/ghrss" title="GHRSS">Github Trending Repositories as RSS-Feed</a>
		</li>
	</ul>

</div>

{% endblock %}