-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (67 loc) · 2.15 KB
/
Copy pathindex.html
File metadata and controls
69 lines (67 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home - Jolinph Wiki</title>
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<header>
<h1>Home</h1>
</header>
<nav>
<button class="hamburger" aria-label="Toggle navigation" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/projects/">Projects</a></li>
<li><a href="/ministries/">Ministries</a></li>
<li><a href="/people/">People</a></li>
<li><a href="/community/">Community</a></li>
</ul>
</nav>
<main>
<div class="container">
<h1>Welcome to the official site of the Jolinph government.</h1>
<p>Jolinph is a virtual nation that aims to replicate the functions of a real world nation-state in the digital world. We do this through our media channels, programming projects, and other developments. Come join us!</p>
<ul class="card-grid">
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
<li>
<a href="placeholder">Placeholder</a>
<p>Placeholder</p>
</li>
</ul>
</div>
</main>
<footer>
<p>© 2019–2025 Jolinph | <a href="https://raw.githubusercontent.com/jolinph/jolinph.github.io/main/LICENSE">License</a></p>
</footer>
<script src="/js/background.js"></script>
<script src="/js/buttons.js"></script>
<script src="/js/theme.js"></script>
<script src="/js/mobile.js"></script>
</body>
</html>