diff options
Diffstat (limited to '_includes/index.liquid')
-rw-r--r-- | _includes/index.liquid | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/_includes/index.liquid b/_includes/index.liquid new file mode 100644 index 0000000..b172823 --- /dev/null +++ b/_includes/index.liquid @@ -0,0 +1,15 @@ +<div class="column"> + {% for post in paginator.posts %} + + <h1> + <a href="{{ site.baseurl }}{{post.url }}"> + {{ post.title }} + </a> + </h1> + <span> + {{ post.excerpt }} + </span> + {% endfor %} +</div> + +{% include pagination.liquid %} |