-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (46 loc) · 1.77 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
<!doctype html>
<html lang="de">
<!-- Copyright (c) 2016 Felix Bolte -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Felix Bolte">
<meta name="date" content="2016-03-12T00:00:00+01:00">
<title>Qual-O-Mat</title>
<link rel="icon" href="./favicon.ico">
<link rel="stylesheet" href="css/default.css">
<script src="js/common.js"></script>
</head>
<body>
<header id="heading_site">
<h1>Qual-O-Mat</h1>
</header>
<main>
<!-- available elections as dropdown menu -->
<nav id="nav_election">
<span>Auswahl:</span>
<select id="select_election" size="1" disabled></select>
<button id="button_load_election" disabled>Los</button>
</nav>
<!-- error messages -->
<aside id="error_election">
<noscript>
<pre>ERROR: This page needs JavaScript. Please enable and reload.</pre>
</noscript>
</aside>
<!-- parties and user result -->
<aside id="result_election"></aside>
<!-- description about election -->
<header id="header_election"></header>
<!-- statements and answers as radio buttons -->
<aside id="content_election"></aside>
</main>
<!-- footer / show license -->
<footer id="footer_site">
<br>
<hr>
<pre id="code">Copyright (c) 2016 Felix Bolte / MIT License (<a target="_blank" href="https://github.com/gockelhahn/qual-o-mat-kiss">https://github.com/gockelhahn/qual-o-mat-kiss</a>)</pre>
<pre id="data">Using data from <a target="_blank" href="https://github.com/gockelhahn/qual-o-mat-data">https://github.com/gockelhahn/qual-o-mat-data</a></pre>
</footer>
</body>
</html>