Initial commit
This commit is contained in:
28
_layouts/category.html
Normal file
28
_layouts/category.html
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
{% include category/title.html %}
|
||||
|
||||
<ul class="list-posts">
|
||||
{% assign empty_category = true %}
|
||||
{% for post in site.posts %}
|
||||
{% if post.categories contains page.category %}
|
||||
<li class="post-teaser">
|
||||
<a href="{{ post.url | prepend: site.baseurl }}">
|
||||
<span class="post-teaser__title">{{ post.title }}</span>
|
||||
<span class="post-teaser__date">{{ post.date | date: "%d %B %Y" }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% assign empty_category = false %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% if empty_category %}
|
||||
<li class="empty-post-list">
|
||||
It seems that there are no articles on that category,
|
||||
please go back <a href="/">home</a> to see the full list of articles.
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
{% include page/footer.html %}
|
||||
Reference in New Issue
Block a user