Sha256: 17b5dc21252db3df64b3872b1f64b4e6f404cdcd391aa5dcb7ff5a80ea8527ed
Contents?: true
Size: 1.21 KB
Versions: 8
Compression:
Stored size: 1.21 KB
Contents
--- layout: default --- <div class="home"> <h1 class="page-heading">Blog Archive</h1> {{ content }} {% capture site_lang %}{{ site.lang | default: "en" }}{% endcapture %} <ul class="post-archives"> {% for post in site.posts %} {% capture post_lang %}{{ post.lang | default: site_lang }}{% endcapture %} {% capture lang %}{% if post_lang != site_lang %}{{ post_lang }}{% endif %}{% endcapture %} <li> <span class="post-meta"> {{ post.date | date: "%b %-d, %Y" }} {% if post.categories != empty or post.tags != empty %} {% include category_links.html categories=post.categories tags=post.tags %} {% endif %} {% if post.external-url %} • <a href="{{ post.url | relative_url }}">Permalink</a> {% endif %} </span> <h2> {% if post.external-url %} <a class="post-link" href="{{ post.external-url }}">{{ post.title | escape }} →</a> {% else %} <a class="post-link" href="{{ post.url | relative_url }}"{% if lang != empty %} lang="{{ lang }}"{% endif %}>{{ post.title | escape }}</a> {% endif %} </h2> </li> {% endfor %} </ul> </div>
Version data entries
8 entries across 8 versions & 1 rubygems