Start the base page layout.

This commit is contained in:
Danila Fedorin 2017-08-14 21:22:43 -07:00
parent 2876eda2ca
commit 367c282497
1 changed files with 18 additions and 0 deletions

18
docs/_layouts/base.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="content">
{{ content }}
</div>
{% include footer.html %}
</body>
</html>