Combine layouts to make the skeleton easier to use

This commit is contained in:
Oliver Davies 2024-08-25 19:30:09 +01:00
parent 435545a3ed
commit e32fb2b41f
3 changed files with 5 additions and 7 deletions

View file

@ -7,6 +7,8 @@
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
</head>
<body>
{% block body %}{% endblock %}
{% block body %}
{% block content %}{% endblock %}
{% endblock %}
</body>
</html>

View file

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

View file

@ -1,4 +1,5 @@
---
layout: default
layout: base
---
Hello, World!