Initial commit

This commit is contained in:
Oliver Davies 2024-02-06 08:00:00 +00:00
commit b7ec14402d
70 changed files with 10513 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<!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="/build/tailwind.css">
</head>
<body class="font-sans text-lg text-gray-800">
{% block body %}{% endblock %}
</body>
</html>

View file

@ -0,0 +1,7 @@
{% extends 'app' %}
{% block body %}
<div class="p-10 mx-auto max-w-4xl">
{% block content %}{% endblock %}
</div>
{% endblock %}