Use jekyll include

This commit is contained in:
Cole Bemis 2017-02-21 23:20:51 -08:00
parent 5a3780b0f1
commit 00fbbd6763
2 changed files with 6 additions and 0 deletions

3
_includes/header.html Normal file
View File

@ -0,0 +1,3 @@
<header>
<h1>Header</h1>
</header>

View File

@ -1,3 +1,5 @@
---
---
<!DOCTYPE html>
<html lang="en">
<head>
@ -5,6 +7,7 @@
<title>Feather</title>
</head>
<body>
{% include header.html %}
<h1>Hello World</h1>
</body>
</html>