-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
75 lines (61 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<header>
<h1>Deutsch Diachron Digital</h1>
<p>Simplified search - <a href="https://korpling.german.hu-berlin.de/annis3/ddd">Advanced search</a> - <a href="./help.html">Documentation</a></p>
<header>
<div id="search">
<form method="post" action="index.py">
<div id="textfield">
<p>
<input type="text" name="query" placeholder="Geben Sie hier Ihre einfache Suche ein."></a>
</p>
</div>
<p>Search in <input type="radio" name="scope" value="elan:translation" checked>translation <input type="radio" name="scope" value="elan:edition">text</p>
<div id="metafield">
<table id="metatable">
<tr>
<th>Zeit</th>
<th>Textsorte</th>
<th>Raum</th>
</tr>
<tr>
<td>
<ul>
<li><input type="checkbox" name="zeit" value="8">8. Jahrhundert</li>
<li><input type="checkbox" name="zeit" value="9">9. Jahrhundert</li>
<li><input type="checkbox" name="zeit" value="10">10. Jahrhundert</li>
<li><input type="checkbox" name="zeit" value="11">11. Jahrhundert</li>
</ul>
</td>
<td>
<ul>
<li><input type="checkbox" name="text" value="alltag">Alltag</li>
<li><input type="checkbox" name="text" value="literatur">Literatur</li>
<li><input type="checkbox" name="text" value="wissenschaft">Wissenschaft</li>
<li><input type="checkbox" name="text" value="religion">Religion</li>
</ul>
</td>
<td>
<ul>
<li><input type="checkbox" name="raum" value="alem">Alemannisch</li>
<li><input type="checkbox" name="raum" value="bair">Bairisch</li>
<li><input type="checkbox" name="raum" value="ofrk">Ostfränkisch</li>
<li><input type="checkbox" name="raum" value="rhfrk">Rheinfränkisch</li>
</ul>
</td>
</tr>
</table>
</div>
<div id="actionfield">
<p><button type="submit">DDD-Suche</button></p>
</div>
</form>
</div>
</body>
</html>