Sha256: 2559e4c6c46f004da80f381118ca615ae07db8909f146e52d8be07cf910a88bd

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

---
layout: page
---

{{ content }}

{% for post in site.posts %}

  {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}

  {% if forloop.first %}
    <h2 class="mt-0 h4">{{ year }}</h2>
    <table class="ml-4">
  {% elsif year != prev_year %}
    </table>
    <h2 class="h4">{{ year }}</h2>
    <table class="ml-4">
  {% endif %}

  {% assign date_format = site.minima_reboot.date_format_short | default: "%b %-d" %}
  <tr>
    <td class="text-right align-top text-truncate"><time class="text-secondary" datetime="{{ post.date | date:"%Y-%m-%d" }}">{{ post.date | date: date_format }}</time></td>
    <td class="text-center align-top px-1">|</td>
    <td class="text-left align-top"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></td>
  </tr>

  {% if forloop.last %}
    </table>
  {% endif %}

  {% capture prev_year %}{{ year }}{% endcapture %}

{% endfor %}

<div class="pt-3"></div>

{% if site.plugins contains "jekyll-feed" %}
  <a href="{{ "/feed.xml" | relative_url }}"><div id="rss-icon" class="mb-2"></div></a>
{% endif %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minima-reboot-1.0.23 _layouts/allposts.html