diff options
Diffstat (limited to 'website/blog/index.html')
-rw-r--r-- | website/blog/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/website/blog/index.html b/website/blog/index.html new file mode 100644 index 000000000..57051c6fe --- /dev/null +++ b/website/blog/index.html @@ -0,0 +1,21 @@ +--- +title: Blog +layout: blog +pagination: + enabled: true +--- + +{% for post in paginator.posts %} +<div> + <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> + <div class="blog-meta"> + {% include byline.html authors=post.authors date=post.date %} + </div> + <p>{{ post.excerpt | strip_html }}</p> + <p><a href="{{ post.url }}">Full Post »</a></p> +</div> +{% endfor %} + +{% if paginator.total_pages > 1 %} +{% include paginator.html %} +{% endif %} |