-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.html
174 lines (131 loc) · 4.89 KB
/
english.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE HTML>
<html>
<head>
<title>Klappbrotpreisbremse - die Petition</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/png" href="./images/sticker.png">
</head>
<body>
Scripts
<script id="vertexShader" type="x-shader/x-vertex">
uniform float time;
varying vec3 vNormal;
void main(void) {
vec3 v = position;
vNormal = normal;
v.z += sin(2.0 * position.x + (time)) * 925.5;
gl_Position = projectionMatrix *
modelViewMatrix *
vec4(v, 0.9);
}
</script>
<script id="fragmentShader" type="x-shader/x-fragment">
varying vec3 vNormal;
uniform float time;
void main(void) {
vec3 light = vec3(0.3, .9, .1);
light = normalize(light);
float dProd = max(0.2, dot(vNormal, light));
gl_FragColor = vec4(0, // R
84, // G
25, // B
1.0); // A
}
</script>
<script src='./assets/js/three.min.js''></script>
<script src="./assets/js/stars.js"></script>
<a href="/" id="flag">Switch to German 🇩🇪</a>
<div id="content">
<!-- Header -->
<header id="header">
<a href="/">
<img src="images/sticker.png" class="logo" alt="Logo">
</a>
<br>
<br>
</header>
<!-- Main -->
<section id="main">
<div class="inner">
<!-- Text -->
<section id="one" class="wrapper style1">
<header class="special">
<h1>Klappbrotpreisbremse</h1>
<h3 id="h3top">I know it' s a weird German word. But let me explain. This is a petition which fights against
increasing folding bread prices in Germany. Also popularly known as kebab or doner kebab. As the petition page
is in German, there's a litte translation down below.</h3>
<a href="https://www.change.org/p/klappbrotpreisbremse" target="_blank" class="button">
sign now
</a>
<br>
<br>
<br>
<br>
<br>
<p>This petition relates to the folding bread problem. Also popularly known as folding bread,
kebab or doner kebab. My buddy Paul paid €11 for a kebab and a Dürüm today. A small tear ran
down his cheek.
<br>
<br>
It is also important to point out that folding bread also means: vegetarian doner kebab,
vegan doner kebab, durum, vegetable doner, Falafel and other dishes on hand. The price
increase is not only a problem for meat eaters, but also for vegetarians and vegans.
<br>
<br>
We all read it every day, energy costs are rising, gas prices are hitting a new record high.
I am not advocating that these concerns are not taken seriously, but I would also like to
draw attention to the fact that it is not just cars that need energy. We humans also need
these.
<br>
<br>
You can't drink petrol, but a Sterni (beer) can. And especially delicious food on hand
provides us with energy for the
day.
<br>
<br>
And this is a matter that affects us all. We all need fuel to get through the day well.
Because we are the ones holding
this country together. And not everyone is lucky enough to be blessed with cooking skills,
their own kitchen, time or
money. Because of this, most of us are in search of readily available food in the urban
jungle.
<br>
<br>
So we demand drastic measures to secure the basic supply of folding bread.
<br>
<br>
Our country subsidizes the mining of coal, the top salary of German railway managers,
mineral oil, wealthy heirs and
indirectly also large corporations, for whom we make it possible to elegantly tax their
billions in sales abroad.
<br>
<br>
We demand that in the future my doner kebab be subsidized and your doner kebab and Paul's
doner kebab and a firmly
defined folding bread price brake defines the possible maximum price for a kebab.
<br>
<br>
Of course, it is important (and I was asked to point this out again) that the folding bread
price brake is taken over by
the state in solidarity and does not bring restaurateurs to their knees.
</p>
</header>
</section>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="copyright">
<h4>by <a href="https://luisrieke.com">Luis</a></h4>
<br />
</div>
<div class="imprint">
<a href="https://spacifik.de/impressum">Impressum</a> · <a
href="https://spacifik.de/datenschutzerklaerung">Datenschutzerklärung</a>
</div>
</footer>
</div>
</body>
</html>