mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-01 02:05:35 -05:00
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.
14 lines
187 B
HTML
14 lines
187 B
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="post">
|
|
|
|
<header class="post-header">
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
|
|
<article class="post-content">
|
|
{{ content }}
|
|
</article>
|
|
|
|
</div> |