Initial commit from Sculpin skeleton

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
commit 9fb8e9c467
10 changed files with 3636 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<!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>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>

View file

@ -0,0 +1,5 @@
{% extends 'app' %}
{% block body %}
{% block content %}{% endblock %}
{% endblock %}