New 404 #821

Merged
jonah merged 2 commits from new-404 into master 2019-04-03 04:38:08 +00:00
2 changed files with 23 additions and 20 deletions
Showing only changes of commit 0bb133e4d5 - Show all commits

View File

@ -1,20 +1,9 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body data-spy="scroll" data-target="#navbar">
<header>
{% include nav.html %}
<div id="top" class="py-4"></div>
</header>
<div class="container" role="main">
<main>
{{ content }}
</main>
<footer>
{% include footer.html %}
</footer>
</div>
{% include scripts.html %}
</body>
</html>
---
layout: minimal
---
<main>
{{ content }}
</main>
<footer>
{% include footer.html %}
</footer>

14
_layouts/minimal.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body data-spy="scroll" data-target="#navbar">
<header>
{% include nav.html %}
<div id="top" class="py-4"></div>
</header>
<div class="container" role="main">
{{ content }}
</div>
{% include scripts.html %}
</body>
</html>