Sha256: fc8ced17c51663de573aca87a22ff4b162e3ea1b4f2502863fedfa940d736c43
Contents?: true
Size: 1.27 KB
Versions: 16
Compression:
Stored size: 1.27 KB
Contents
--- layout: default --- <div class="home"> <h1 class="page-heading">{% include i18n.html value="archive" default="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"> {% include date.html date=post.date lang=lang %} {% 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
16 entries across 16 versions & 2 rubygems