forked from niccokunzmann/open-web-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
62 lines (61 loc) · 2.75 KB
/
about.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
<!doctype html>
<html>
<!-- Mostly copied from https://docs.dhtmlx.com/scheduler/howtostart_nodejs.html#step2addingschedulertothepage -->
<head>
<title>{{ specification["title"] | safe }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="css/index.css"
rel="stylesheet" type="text/css" charset="utf-8">
<script type="text/javascript">
var specification = {{ specification | tojson | safe }};
</script>
</head>
<body>
<header>
<a href="/calendar.html{{ get_query_string() | safe }}"><h1>{{ specification["title"] | safe }}</h1></a>
</header>
<main>
<p class="description">
{{ specification["description"] or html("description") }}
</p>
<ul>
<li><a href="/calendar.html{{ get_query_string() | safe }}">{{ html("links-website") }}</a></li>
<li><a href="/calendar.ics{{ get_query_string() | safe }}">{{ html("links-ics") }}</a></li>
<li><a href="/calendar.spec{{ get_query_string() | safe }}">{{ html("links-spec") }}</a></li>
</ul>
<h2>{{ html("project-title") }}</h2>
<p class="description">
{{ html("project-description") }}
</p>
<ul>
<li><a href="{{ specification["contributing"] | safe }}">{{ html("improve") }}</a></li>
<li><a href="{{ specification["source_code"] | safe }}">{{ html("source-code") }}</a></li>
</ul>
<h2>{{ html("license") }}</h2>
<p>
Open Web Calendar<br/>
Copyright (C) 2019 Nicco Kunzmann
<p>
</p>
dhtmlxScheduler v.5.1.6 Standard<br/>
(C) Dinamenta, UAB.
<p>
</p>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License.
<p>
</p>
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
<p>
</p>
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
</p>
</main>
</body>
</html>