-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgenerate-html.sh
executable file
·93 lines (78 loc) · 1.78 KB
/
generate-html.sh
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
#! /bin/bash
set -euo pipefail
usage() {
echo "usage: $0 oasis|sandcats|support terms|privacy" >&2;
exit 1
}
if [ "$#" != 2 ]; then
usage
fi
if [ "$1" = "oasis" ] ; then
PRODUCT="Oasis"
elif [ "$1" = "sandcats" ] ; then
PRODUCT="Sandcats"
elif [ "$1" = "support" ] ; then
PRODUCT="Support Service"
else
usage
fi
PREFIX="$1"
if [ "$2" = "terms" ]; then
CLASS="terms"
TITLE="Terms of Service"
elif [ "$2" = "privacy" ]; then
CLASS="privacy"
TITLE="Privacy Policy"
else
usage
fi
cat << __EOF__
<!DOCTYPE html>
<html>
<head>
<title>Sandstorm $PRODUCT: $TITLE</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
function showTerms() {
document.body.className = "terms";
if (history.replaceState) {
history.replaceState({}, "Sandstorm $PRODUCT: Terms of Service", "/terms");
} else {
document.title = "Sandstorm $PRODUCT: Terms of Service";
}
}
function showPrivacy() {
document.body.className = "privacy";
if (history.replaceState) {
history.replaceState({}, "Sandstorm $PRODUCT: Privacy Policy", "/privacy");
} else {
document.title = "Sandstorm $PRODUCT: Privacy Policy";
}
}
</script>
<style type="text/css">
__EOF__
cat style.css
cat << __EOF__
</style>
</head>
<body class="$CLASS">
<section id="overview">
__EOF__
markdown "${PREFIX}-overview.md"
cat << __EOF__
</section>
<section id="terms" onclick="showTerms()">
__EOF__
markdown "${PREFIX}-tos.md"
cat << __EOF__
</section>
<section id="privacy" onclick="showPrivacy()">
__EOF__
markdown "${PREFIX}-privacy.md"
cat << __EOF__
</section>
</body>
</html>
__EOF__