-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (80 loc) · 3.41 KB
/
Copy pathindex.html
File metadata and controls
89 lines (80 loc) · 3.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pi-SMP</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/cyborg/bootstrap.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
<link href="assets/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<a class="github-fork-ribbon" href="https://github.com/simonafield/Pi-SMP" data-ribbon="Fork me on GitHub"
title="Fork me on GitHub">Fork me on GitHub</a>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">Pi-SMP</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#downloads">Downloads</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="bg-primary text-white text-center p-5">
<div class="container">
<h1 class="display-4">Welcome to Pi-SMP!</h1>
<a href="https://discord.com/invite/JkGaQpBUC8" class="btn btn-lg btn-light">Join the Community!</a>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-5">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="section-heading">About Pi-SMP</h2>
<hr class="my-4">
<p class="lead">We have been a dedicated community of Minecraft Pi Edition enthusiasts since 2021.
</p>
<p class="lead">Pi-SMP is a place for players to connect, build, and explore together.
</p>
</div>
</div>
</div>
</section>
<!-- Downloads Section -->
<section id="downloads" class="py-5 bg-dark text-white">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="section-heading">Downloads</h2>
<hr class="my-4">
<a href="/archive" class="btn btn-primary">Pi-SMP Archive</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-4 bg-light">
<div class="container text-center">
<p class="mb-0">Copyright © Pi-SMP 2026</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>