Sha256: a09a5bb9bdad7e69b8eb5e54b7d3354d358ec456160e94c8e1b3256c39aa630c
Contents?: true
Size: 884 Bytes
Versions: 14
Compression:
Stored size: 884 Bytes
Contents
--- layout: default --- {% assign posts = site.posts | where: "layout", "post" %} <section class="home"> <header> <h1 class="page-heading">{{ site.title }}</h1> <p class="lead">{{ site.description }}</p> </header> {{ content }} {%- if site.posts.size > 0 -%} <section class="articles"> <h2>{{ site.i18n.home.articles | default: "Articles" }}</h2> {%- for post in posts -%} <article> {%- assign date_format = site.i18n.date_format | default: "%b %-d, %Y" -%} <span class="post-meta">{{ post.date | date: date_format }}</span> <h3> <a class="post-link" href="{{ post.url }}"> {{ post.title | escape }} </a> </h3> <p class="lead">{{ post.description }}</p> </article> <hr/> {%- endfor -%} </section> {%- endif -%} </section>
Version data entries
14 entries across 14 versions & 1 rubygems