You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
303 B
7 lines
303 B
9 years ago
|
<h3>Latest {{ page.categories | first | replace: '-',' ' | capitalize }}</h3>
|
||
|
<ul>
|
||
|
{% capture category_name %}{{ page.categories | first }}{% endcapture %}
|
||
|
{% for post in site.categories.[category_name] limit:3 %}
|
||
|
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|