configure

This commit is contained in:
bchiang7
2016-12-08 22:38:20 -05:00
parent 90d6cec3a4
commit ea789e0928
261 changed files with 19388 additions and 0 deletions

13
_layouts/default.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
{% include head.html %}
</head>
<body>
{% include nav.html %}
<div id="skrollr-body">
{{ content }}
</div>
{% include scripts.html %}
</body>
</html>

10
_layouts/not_found.html Normal file
View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
{% include head.html %}
</head>
<body class="four-oh-four">
{{ content }}
{% include scripts.html %}
</body>
</html>

9
_layouts/post.html Normal file
View File

@@ -0,0 +1,9 @@
---
layout: default
---
<h2>{{ page.title }}</h2>
<p class="meta">{{ page.date | date_to_string }}</p>
<div class="post">
{{ content }}
</div>