diff --git a/source/blog.html b/source/articles/archive.html.twig similarity index 97% rename from source/blog.html rename to source/articles/archive.html.twig index a45a6ffd..ec69942d 100644 --- a/source/blog.html +++ b/source/articles/archive.html.twig @@ -1,6 +1,6 @@ --- layout: default -title: Blog +title: Archive use: [posts] --- {% block page_title_wrapper %} diff --git a/source/articles/index.html.twig b/source/articles/index.html.twig new file mode 100644 index 00000000..b2f8f8be --- /dev/null +++ b/source/articles/index.html.twig @@ -0,0 +1,14 @@ +--- +layout: default +title: Articles +use: [posts] +--- +{% for post in data.posts if post.favourite %} +
+ {% include 'blog/post-summary' %} +
+{% endfor %} + +
+ Archive +