This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
forked from loleg/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.de.html
127 lines (121 loc) · 3.7 KB
/
index.de.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
title: Data Toolbox
language: Deutsch
lang: de
ref: index
layout: default
---
<header>
<h1>{{ site.de.tagline }}</h1>
<a href="index.html">ENGLISH</a>
<h5>{{ site.de.description }}</h5>
</header>
<section id="frontpage" class="tiles">
<article class="style7">
<span class="image">
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" />
</span>
<a href="#tools">
<i class="fa fa-wrench" aria-hidden="true"></i>
<h2>Werkzeug</h2>
</a>
</article>
<article class="style7">
<span class="image">
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" />
</span>
<a href="#categories">
<i class="fa fa-cubes" aria-hidden="true"></i>
<h2>Stufen</h2>
</a>
</article>
<article class="style7">
<span class="image">
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" />
</span>
<a href="overview.html">
<i class="fa fa-commenting" aria-hidden="true"></i>
<h2>Infos</h2>
</a>
</article>
</section>
<a name="tools"></a>
<hr><h1>Werkzeug</h1>
<section id="toolbox" class="toolbox">
{% for tool in site.posts %}
<span class="image">
{% if tool.image contains '://' %}
<img src="{{ tool.image }}" />
{% elsif tool.image %}
<img src="{{ site.baseurl }}/{{ tool.image }}" />
{% else %}
<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" />
{% endif %}
</span>
<a href="{{ tool.url }}">
<h3>
{{ tool.title }}
<span class="categories">
{% for cat in site.toolbox.categories %}
{% if tool.categories contains cat.name %}
<a title="{{ cat.title }}" href="#cat{{ cat.name }}"
class="pipeline cat-{{ cat.name }}">
<span>{{ cat.name }}</span>
</a>
{% endif %}
{% endfor %}
</span>
</h3>
<div class="content">
<p>{{ tool.tagline.de }}</p>
</div>
</a><br clear="all">
{% endfor %}
</section>
<a name="categories"></a>
<hr><h1>Stufen</h1>
{% for cat in site.toolbox.categories %}
<section class="toolbox" id="cat{{ cat.name }}">
<a name="{{ cat.name }}"></a>
<div class="part{{ forloop.index }}">
<span class="pipeline cat-{{ cat.name }}"></span>
<h2>{{ cat.title }}</h2>
<p class="subtitle">{{ cat.info.de }}</p>
</div>
</section>
{% endfor %}
<a name="contact"></a>
<hr>
<section class="contact" id="contact">
<h2>{{ site.de.signup.title }}</h2>
<p>{{ site.de.signup.header }}</p>
<form method="post" action="https://utou.ch/scoda.php">
<div class="row uniform">
<div class="6u 12u$(xsmall)">
<input type="text" name="NAME" id="signup-name" value="" placeholder="{{ site.de.signup.name }}" required />
</div>
<div class="6u$ 12u$(xsmall)">
<input type="email" name="EMAIL" id="signup-email" value="" placeholder="{{ site.de.signup.email }}" required />
</div>
<div class="12u$">
<textarea name="COMMENT" id="signup-message" placeholder="{{ site.de.signup.comment }}" rows="6" required></textarea>
</div>
<div class="6u$ select-wrapper">
<select name="SKILL" id="signup-category">
<option value="">{{ site.de.signup.skills }}</option>
<option value="Beginner">{{ site.de.signup.beginner }}</option>
<option value="Intermediate">{{ site.de.signup.intermediate }}</option>
<option value="Advanced">{{ site.de.signup.advanced }}</option>
<option value="Expert">{{ site.de.signup.expert }}</option>
</select>
</div>
<div class="12u$">
<div class="g-recaptcha" data-sitekey="{{ site.grecaptcha.key }}"></div>
<input type="hidden" name="lang" value="" />
<ul class="actions">
<li><input type="submit" value="{{ site.de.signup.send }}" class="special" /></li>
</ul>
</div>
</div>
</form>
</section>