Convert to Jekyll

This allows us to use templating and markdown.
This commit is contained in:
Spotlight 2021-04-16 17:12:06 -05:00
commit 39412d0be8
No known key found for this signature in database
GPG key ID: 874AA355B3209BDC
12 changed files with 318 additions and 403 deletions

21
_layouts/default.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8' />
<title>{{ page.title }} &mdash; WiiLink24</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://proicons.netlify.app/css/icons.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="assets/icon.png">
<meta name="description" content="WiiLink24 is an all new revival service for the Wii. It brings back some of the most highly reqeuested channels back online &mdash; channels released only in Japan!">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0">
</head>
<body>
{% include navbar.html %}
<div class="content">
{{ content }}
</div>
{% include footer.html %}
</body>
</html>