-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (132 loc) · 4.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Acts Project</title>
<meta name="theme-color" content="#C0E8F9" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="./public/favicon.ico" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.2/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/TextPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.2/MotionPathPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/EasePack.min.js"></script>
<script type="module">
window.$store = {
currentPage: 0,
pages: [
{
title: "What is the Acts Project?",
sID: "intro",
},
{
title: "The Ascension",
sID: "acts1_5",
},
{
title: "A New Leader",
sID: "acts6_7",
},
{
title: "Saul's Conversion",
sID: "acts8_9",
},
{
title: "Peter's Vision",
sID: "acts10_12",
},
{
title: "Paul's Travels",
sID: "acts13_20",
},
{
title: "Paul's Arrest",
sID: "acts21_25",
},
{
title: "Jesus is the way",
sID: "conclusion",
},
],
};
</script>
<script type="module" src="src/setup.js"></script>
<!-- Web Components -->
<script type="module" src="src/components/spa-link.js"></script>
<script type="module" src="src/components/scroll-spacer.js"></script>
</head>
<body>
<div class="navbar bg-primary">
<div class="navbar-start">
<label for="drawer" class="btn btn-ghost btn-circle lg:hidden"
><svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-6 h-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
/>
</svg>
</label>
</div>
<div class="navbar-center z-30">
<spa-link
id="navbar-left"
class="btn btn-ghost normal-case text-xs"
to="acts26_27"
></spa-link>
<spa-link
id="navbar-active"
class="btn btn-neutral normal-case text-xl mx-3"
to="acts1_3"
></spa-link>
<spa-link
id="navbar-right"
class="btn btn-ghost normal-case text-xs"
to="acts6_7"
></spa-link>
</div>
<div class="navbar-end">
<a href="https://github.com/ThatXliner/acts-project"
><svg
xmlns="http://www.w3.org/2000/svg"
class="w-6 h-6"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385c.6.105.825-.255.825-.57c0-.285-.015-1.23-.015-2.235c-3.015.555-3.795-.735-4.035-1.41c-.135-.345-.72-1.41-1.23-1.695c-.42-.225-1.02-.78-.015-.795c.945-.015 1.62.87 1.845 1.23c1.08 1.815 2.805 1.305 3.495.99c.105-.78.42-1.305.765-1.605c-2.67-.3-5.46-1.335-5.46-5.925c0-1.305.465-2.385 1.23-3.225c-.12-.3-.54-1.53.12-3.18c0 0 1.005-.315 3.3 1.23c.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23c.66 1.65.24 2.88.12 3.18c.765.84 1.23 1.905 1.23 3.225c0 4.605-2.805 5.625-5.475 5.925c.435.375.81 1.095.81 2.22c0 1.605-.015 2.895-.015 3.3c0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12Z"
clip-rule="evenodd"
/></svg
></a>
</div>
</div>
<div class="drawer drawer-mobile">
<input id="drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content">
<main class="relative" id="main">
<!-- For SPA -->
</main>
</div>
<div class="drawer-side">
<label for="drawer" class="drawer-overlay"></label>
<ul
class="menu p-4 overflow-y-auto w-80 bg-neutral text-primary"
id="sidebarUl"
>
<!-- Sidebar content here (dynamically generated) -->
</ul>
</div>
</div>
</body>
</html>