Sha256: 7609e8479fe1327190ffeffd46c1764fb9d3d4a865e10571b1d0843a5f0fa85e
Contents?: true
Size: 887 Bytes
Versions: 9
Compression:
Stored size: 887 Bytes
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 %} • {% include category_links.html categories=post.categories %}{% endif %}</span> <h2> <a class="post-link" href="{{ post.url | relative_url }}"{% if lang != empty %} lang="{{ lang }}"{% endif %}>{{ post.title | escape }}{% if post.external-url %} →{% endif %}</a> </h2> </li> {% endfor %} </ul> </div>
Version data entries
9 entries across 9 versions & 1 rubygems