Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

Commit d60bbc2

Browse files
committed
First version of the website
1 parent c66fd45 commit d60bbc2

12 files changed

Lines changed: 488 additions & 58 deletions

404.html

Lines changed: 53 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,53 @@
1-
---
2-
permalink: /404.html
3-
layout: default
4-
---
5-
6-
<style type="text/css" media="screen">
7-
.container {
8-
margin: 10px auto;
9-
max-width: 600px;
10-
text-align: center;
11-
}
12-
h1 {
13-
margin: 30px 0;
14-
font-size: 4em;
15-
line-height: 1;
16-
letter-spacing: -1px;
17-
}
18-
</style>
19-
20-
<div class="container">
21-
<h1>404</h1>
22-
23-
<p><strong>Page not found :(</strong></p>
24-
<p>The requested page could not be found.</p>
25-
</div>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<title>404 Not Found</title>
8+
9+
<link rel="stylesheet" href="/css/styles.css">
10+
11+
<link rel="preconnect" href="https://fonts.googleapis.com">
12+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
13+
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
14+
</head>
15+
16+
<body>
17+
<div class="topbar">
18+
<div class="namelink">
19+
<a href="/index.html">
20+
MuonMC
21+
</a>
22+
</div>
23+
24+
<a href="/blog.html">
25+
Blog
26+
</a>
27+
28+
<a href="/download.html">
29+
Download
30+
</a>
31+
32+
<a href="/develop.html">
33+
Develop
34+
</a>
35+
</div>
36+
37+
<div class="main-body" style="text-align: center;">
38+
<h1>Oops! Nothing here!</h1>
39+
<p>Sadly, this page doesn't exist. Maybe you're looking for a <a href="/blog.html">Blog post</a>?</p>
40+
</div>
41+
42+
<div class="footer">
43+
<div class="footer-text">
44+
<p><b>Copyright &copy; MuonMC, 2024</b></p>
45+
46+
<p>
47+
MuonMC is not an official Minecraft product, and is not approved by or
48+
associated with Mojang Studios. "Minecraft" is a trademark of Mojang AB.
49+
</p>
50+
</div>
51+
</div>
52+
</body>
53+
</html>

_layouts/blog.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<title>{{ page.title }}</title>
8+
9+
<meta property="og:url" content="https://muonmc.org/">
10+
<meta property="og:title" content="{{ page.title }} | MuonMC">
11+
<meta property="og:description" content="{{ page.description }}"/>
12+
<meta property="og:site_name" content="MuonMC">
13+
14+
<link rel="stylesheet" href="/css/styles.css">
15+
16+
<link rel="preconnect" href="https://fonts.googleapis.com">
17+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
18+
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
19+
</head>
20+
21+
<body>
22+
<div class="topbar">
23+
<div class="namelink">
24+
<a href="/index.html">
25+
MuonMC
26+
</a>
27+
</div>
28+
29+
<a href="/blog.html">
30+
Blog
31+
</a>
32+
33+
<a href="/download.html">
34+
Download
35+
</a>
36+
37+
<a href="/develop.html">
38+
Develop
39+
</a>
40+
</div>
41+
42+
<div class="main-body">
43+
<div class="post-listings">
44+
{% for post in site.posts %}
45+
<h2 style="margin-bottom: 0%;">&#x2022 <a href="{{ post.url }}">{{ post.title }}</a></h3>
46+
<p style="font-size: 10pt;">Publication date: {{ post.date }}</p>
47+
{% endfor %}
48+
</div>
49+
</div>
50+
51+
<div class="footer">
52+
<div class="footer-text">
53+
<p><b>Copyright &copy; MuonMC, 2024</b></p>
54+
55+
<p>
56+
MuonMC is not an official Minecraft product, and is not approved by or
57+
associated with Mojang Studios. "Minecraft" is a trademark of Mojang AB.
58+
</p>
59+
</div>
60+
</div>
61+
</body>
62+
</html>

_layouts/generic.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<title>{{ page.title }}</title>
8+
9+
<meta property="og:url" content="https://muonmc.org/">
10+
<meta property="og:title" content="{{ page.title }} | MuonMC">
11+
<meta property="og:description" content="{{ page.description }}"/>
12+
<meta property="og:site_name" content="MuonMC">
13+
14+
<link rel="stylesheet" href="/css/styles.css">
15+
16+
<link rel="preconnect" href="https://fonts.googleapis.com">
17+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
18+
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
19+
</head>
20+
21+
<body>
22+
<div class="topbar">
23+
<div class="namelink">
24+
<a href="/index.html">
25+
MuonMC
26+
</a>
27+
</div>
28+
29+
<a href="/blog.html">
30+
Blog
31+
</a>
32+
33+
<a href="/download.html">
34+
Download
35+
</a>
36+
37+
<a href="/develop.html">
38+
Develop
39+
</a>
40+
</div>
41+
42+
<div class="main-body">
43+
{{ content }}
44+
</div>
45+
46+
<div class="footer">
47+
<div class="footer-text">
48+
<p><b>Copyright &copy; MuonMC, 2024</b></p>
49+
50+
<p>
51+
MuonMC is not an official Minecraft product, and is not approved by or
52+
associated with Mojang Studios. "Minecraft" is a trademark of Mojang AB.
53+
</p>
54+
</div>
55+
</div>
56+
</body>
57+
</html>

_layouts/index.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<title>{{ page.title }}</title>
8+
9+
<meta property="og:url" content="https://muonmc.org/">
10+
<meta property="og:title" content="{{ page.title }} | MuonMC">
11+
<meta property="og:description" content="{{ page.description }}"/>
12+
<meta property="og:site_name" content="MuonMC">
13+
14+
<link rel="stylesheet" href="/css/styles.css">
15+
16+
<link rel="preconnect" href="https://fonts.googleapis.com">
17+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
18+
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
19+
</head>
20+
21+
<body>
22+
<div class="topbar">
23+
<div class="namelink">
24+
<a href="/index.html">
25+
MuonMC
26+
</a>
27+
</div>
28+
29+
<a href="/blog.html">
30+
Blog
31+
</a>
32+
33+
<a href="/download.html">
34+
Download
35+
</a>
36+
37+
<a href="/develop.html">
38+
Develop
39+
</a>
40+
</div>
41+
42+
<div class="big-image">
43+
<img src="/images/backthematic.webp" alt="MuonMC thematic background image">
44+
<div class="big-image-text">
45+
<p>The modloader that works.</p>
46+
<button class="button-download" type="button">Download</button>
47+
<button class="button-develop">Develop</button>
48+
</div>
49+
</div>
50+
51+
<div class="main-body">
52+
{{ content }}
53+
</div>
54+
55+
<div class="footer">
56+
<div class="footer-text">
57+
<p><b>Copyright &copy; MuonMC, 2024</b></p>
58+
59+
<p>
60+
MuonMC is not an official Minecraft product, and is not approved by or
61+
associated with Mojang Studios. "Minecraft" is a trademark of Mojang AB.
62+
</p>
63+
</div>
64+
</div>
65+
</body>
66+
</html>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: generic
3+
title: "First blog post"
4+
date: 2024-06-27 00:00:00 -0000
5+
categories: update
6+
---
7+
8+
# Our first blog post
9+
10+
Hello, everyone! Thank you for visiting our website. The project is in its early stages of development, so you won't see much going on, like, at all. But thanks for your patience!

_posts/2024-06-26-welcome-to-jekyll.markdown

Lines changed: 0 additions & 29 deletions
This file was deleted.

blog.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: blog
3+
title: "Blog"
4+
description: "Blog posts from MuonMC"
5+
---

0 commit comments

Comments
 (0)