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 '')
-rw-r--r--_includes/categories/category.html (renamed from _layouts/category.html)11
1 files changed, 3 insertions, 8 deletions
diff --git a/_layouts/category.html b/_includes/categories/category.html
index 5be0ddc..78d5aa0 100644
--- a/_layouts/category.html
+++ b/_includes/categories/category.html
@@ -1,12 +1,7 @@
----
-layout: default
----
-<h1>{{ page.title }}</h1>
-<hr/>
-<p>This is a list of posts in category "{{ page.category }}".</p>
-{% if site.categories[page.category].size > 0 %}
+<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[page.category] %}
+ {% 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>