Add default template

Fixes #3
This commit is contained in:
Oliver Davies 2017-10-27 18:55:59 +01:00
parent 1a672987a1
commit 56ba3bd2bf
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>

View file

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