diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 00:52:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 00:52:04 +0300 |
commit | 909b73b33fc325b82dfbe20cff2ac45a53e4fdc8 (patch) | |
tree | f1cac2cca89fb34f10035ce39dc6c0df212625d5 /_includes | |
parent | add main.css that imports all others (diff) | |
download | jekyll-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')
-rw-r--r-- | _includes/categories/category.html | 9 |
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" }} — {{ 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> |