Adds a basic page template

Many users moving to Jekyll from other popular blogging options (like
Wordpress) will be used to thinking in terms of pages/posts. Having a
page template like this will be convenient for those users.
This commit is contained in:
Joel Glovier 2014-02-15 23:07:10 -05:00
parent fcd2383de3
commit 16d8d05172
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<h1>{{ page.title }}</h1>
</header>
<article class="post-content">
{{ content }}
</article>
</div>