-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.html
More file actions
54 lines (44 loc) · 1.75 KB
/
Copy pathsettings.html
File metadata and controls
54 lines (44 loc) · 1.75 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Timetable</title>
<link rel="stylesheet" type="text/css" href="styles/general.css"/>
<link rel="stylesheet" type="text/css" href="styles/settings.css"/>
<link rel="stylesheet" type="text/css" href="styles/fontello/css/fontello.css"/>
<script src="scripts/configuration.js"></script>
<script src="scripts/translator.js"></script>
<script src="scripts/page_transitions.js"></script>
<script src="scripts/general.js"></script>
<link rel="manifest" href="manifest.json"/>
<meta name="theme-color" content="#FFFFFF"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Stundenplan">
<link rel="apple-touch-icon" href="icon_128.png">
<link rel="icon" href="icon_128.png">
</head>
<body>
<header>
<button class="back_button icon-back" onclick="transition_back();"></button>
<h1 data-translator-key="settings"></h1>
</header>
<div id="settings_container">
<div class="settings_group">
<a onclick="transition_to_page('application_settings.html');" data-translator-key="application" class="icon-settings">
General
</a>
<a onclick="transition_to_page('color_settings.html');" data-translator-key="manage_colors" class="icon-colors">
Manage colors
</a>
<a onclick="transition_to_page('week_view.html?print');" data-translator-key="print" class="icon-print">
Print
</a>
<a onclick="transition_to_page('about.html');" data-translator-key="about_timetable" class="icon-info">
About Timetable
</a>
</div>
</div>
</body>
</html>