Sha256: c499758143cac78c2378ef3d54b4dab1262ae68ffdffda40f4a477e1731fbbce
Contents?: true
Size: 1002 Bytes
Versions: 7
Compression:
Stored size: 1002 Bytes
Contents
--- layout: default --- {% assign posts = site.posts | where: 'layout', 'post' %} {% assign theme = site.posts | find: 'layout', 'theme' %} <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 class="mb-4">{{ 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" {{ theme.hide_timestamps | value_if: "hidden" }}>{{ 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
7 entries across 7 versions & 1 rubygems