Initial commit

This commit is contained in:
Oliver Davies 2024-02-06 08:00:00 +00:00
commit ccfd866f59
14 changed files with 3732 additions and 0 deletions

0
source/_includes/.keep Normal file
View file

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="{{ site.locale|default('en') }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<div class="container">
{% block content_wrapper %}
<h1>{{ page.title }}</h1>
{% block content %}{% endblock %}
{% endblock %}
</div>
</body>
</html>

5
source/css/styles.css Normal file
View file

@ -0,0 +1,5 @@
.container {
margin: 0 auto;
max-width: 768px;
padding: 0 1rem;
}

4
source/index.md Normal file
View file

@ -0,0 +1,4 @@
---
layout: base
title: Hello, World!
---