This commit is contained in:
2020-09-14 04:40:50 -07:00
commit a7fb99dad6
19 changed files with 1220 additions and 0 deletions

11
_layouts/base.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<body>
<head>
{% include head.html %}
</head>
<body>
{{ content }}
{% include javascripts.html %}
</body>
</html>

9
_layouts/page.html Normal file
View File

@@ -0,0 +1,9 @@
---
layout: base
---
<section id="page" class="container">
{{ content }}
</section>
<footer id="bodyfooter">
{% include bodyfooter.html %}
</footer>