aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/categories
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 00:52:04 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 00:52:04 +0300
commit909b73b33fc325b82dfbe20cff2ac45a53e4fdc8 (patch)
treef1cac2cca89fb34f10035ce39dc6c0df212625d5 /_includes/categories
parentadd main.css that imports all others (diff)
downloadjekyll-theme-909b73b33fc325b82dfbe20cff2ac45a53e4fdc8.tar.gz
jekyll-theme-909b73b33fc325b82dfbe20cff2ac45a53e4fdc8.zip
category.html should be an include, not a layout
This is similar to posts.html.
Diffstat (limited to '_includes/categories')
-rw-r--r--_includes/categories/category.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/_includes/categories/category.html b/_includes/categories/category.html
new file mode 100644
index 0000000..78d5aa0
--- /dev/null
+++ b/_includes/categories/category.html
@@ -0,0 +1,9 @@
+<p>This is a list of posts in category "{{ include.category }}".</p>
+{% if site.categories[include.category].size > 0 %}
+ <ul>
+ {% for post in site.categories[include.category] %}
+ <li><a href="{{ post.url | relative_url }}">{{ post.date | date: "%Y-%m-%d" }} &mdash; {{ post.title }}</a></li>
+ {% endfor %}
+ </ul>
+{% endif %}
+<p>For a complete list of posts grouped by category, please see <a href="{{ '/all/' | relative_url }}">this page</a>.</p>