Sha256: 49cb5ba4569d8460019ab738658a2093808bc52a6bc4036bdbcf7c7934f321ac
Contents?: true
Size: 847 Bytes
Versions: 2
Compression:
Stored size: 847 Bytes
Contents
{%-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 class="postlistul"> {%- for post in posts limit: include.limit -%} <li class="postlistli"> <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a> <date>{{- post.date | date: site.theme_config.date_format -}}</date> </li> {%- endfor -%} {%- if include.show_more and limit_exceeded -%} <li class="postlistli"><a href="{{ include.show_more_url }}">{{ include.show_more_text | default: "Show more..." }}</a></li> {%- endif -%} </ul> {%- endif -%}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jekyll-zeta-0.2.3 | _includes/post_list.html |
jekyll-zeta-0.2.2 | _includes/post_list.html |