Incluir post_list.html personalizado

https://github.com/riggraz/no-style-please/issues/11
This commit is contained in:
Echedelle López Romero 2021-01-06 23:01:41 +00:00
parent 1552b439fb
commit 4862073c97
1 changed files with 25 additions and 0 deletions

25
_includes/post_list.html Normal file
View File

@ -0,0 +1,25 @@
{% if include.category %}
{% assign posts = site.categories[include.category] %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
{% if include.limit and posts.size > include.limit %}
{% assign limit_exceeded = true %}
{% else %}
{% assign limit_exceeded = false %}
{% endif %}
{%- if posts.size > 0 -%}
<ul>
{%- for post in posts limit: include.limit -%}
<li>
<span>{{- post.date | date: site.theme_config.date_format -}}</span>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</li>
{%- endfor -%}
{%- if include.show_more and limit_exceeded -%}
<li><a href="{{ include.show_more_url }}">{{ include.show_more_text | default: "Show more..." }}</a></li>
{%- endif -%}
</ul>
{%- endif -%}