-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcategory.html
executable file
·23 lines (19 loc) · 1.06 KB
/
category.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: blog
title: Categories
permalink: /category/
---
<! -- BLOG POSTS LIST -->
{% for category in site.categories reversed %}{% unless category.first == "blog" or category.first == "project" or category.first == "question" %}
<a class="anchor" id="{{ category.first }}"></a><h4>{{ category.first }}</h4>
<div class="hline"></div>
<ul class="list-unstyled popular-posts">
{% for post in site.categories[category.first] %}
<li>
<!--a href="{{ post.url | prepend: site.baseurl }}"><img src="{{ "/assets/img/blog/thumbs/" | prepend: site.baseurl }}{{ post.thumb }}" alt="Popular Post"></a-->
<p><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></p>
<em>Pubblicato il {{ post.date | date_to_string }}</em>
</li>
{% endfor %}
</ul>
{% endunless %}{% endfor %}