-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 2.04 KB
/
index.html
File metadata and controls
49 lines (39 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ukubona - Gateway to Perception</title>
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style/homepage.css">
</head>
<body>
<!-- Site name ABOVE centerpiece -->
<div id="site-name">Ukubona</div>
<div id="site-tagline">The Gateway to Perception</div>
<!-- Centerpiece -->
<div id="centerpiece">
<img src="images/ukubona-004.jpg" alt="Ukubona Globe" id="globe">
<div id="topics-wrapper">
<a href="articles/mythology.html" class="topic" style="--i:0;">Mythology</a>
<a href="articles/theory-of-relativity.html" class="topic" style="--i:1;">Epistemology</a>
<a href="articles/symbolic-logic.html" class="topic" style="--i:2;">Symbolism</a>
<a href="articles/first-article.html" class="topic" style="--i:3;">Architecture</a>
<a href="articles/theory-of-relativity.html" class="topic" style="--i:4;">Cognition</a>
<a href="articles/your-article-title.html" class="topic" style="--i:5;">Resonance</a>
</div>
</div>
<!-- Search bar BELOW everything -->
<div id="search-bar">
<input id="search-input" type="text" placeholder="Search Ukubona...">
</div>
<!-- Link to the search.js script -->
<script src="js/search.js" defer></script>
<!-- Hidden Iframes for Searchable Content (place them here) -->
<iframe src="articles/mythology.html" style="display:none; border: 1px solid red;" id="mythology"></iframe>
<iframe src="articles/theory-of-relativity.html" style="display:none; border: 1px solid red;" id="theory-of-relativity"></iframe>
<iframe src="articles/symbolic-logic.html" style="display:none; border: 1px solid red;" id="symbolic-logic"></iframe>
<iframe src="articles/first-article.html" style="display:none; border: 1px solid red;" id="first-article"></iframe>
<iframe src="articles/your-article-title.html" style="display:none; border: 1px solid red;" id="your-article-title"></iframe>
</body>
</html>