-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (79 loc) · 2.44 KB
/
index.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
<!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="/english" id="flag">Switch to English 🇬🇧</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">Diese Petition bezieht sich auf die Klappbrotproblematik.
Im Volksmund auch gerne als
Faltbrot, Kebab oder Döner
bezeichnet. Weitere Informationen dazu auf der Petitionsseite.</h3>
<a href="https://www.change.org/p/klappbrotpreisbremse" target="_blank" class="button">
Zur Petitionsseite
</a>
</header>
</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>