Sha256: 6e7d44366c020b2ebf17beea4373c51b3f2365ddb98dbad24408334ae0358c68
Contents?: true
Size: 1.2 KB
Versions: 16
Compression:
Stored size: 1.2 KB
Contents
--- layout: default --- {%- if page.title %} <header id="page-title"> <h1>{{ page.title }}</h1> </header> {%- endif -%} {{ content }} {%- if site.posts.size > 0 %} <section id="posts"> {%- assign date_format = site.cyclist.date_format | default: "%A, %b %-d, %Y" -%} {%- assign posts_limit = site.posts_limit | default: "20" %} {%- for post in site.posts limit: posts_limit %} {% if current_date != post.date and current_date %} <hr> {% endif %} {% if current_date != post.date %} <h2 class="post-date"><time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: date_format }}</time></h2> {% endif %} {%- assign current_date = post.date %} <article class="{{ post.layout | default: "Post" }}"> <header> <h1><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h1> </header> {% if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%} {%- if site.show_contents -%} {{ post.content }} {%- endif %} </article> {%- endfor %} </section> {% endif -%}
Version data entries
16 entries across 16 versions & 2 rubygems