Sha256: 9278c5ca0fcedf028ad18dc46c405ddc04bcd7a24e6ba0eb77bfbc774d35130b
Contents?: true
Size: 1.72 KB
Versions: 13
Compression:
Stored size: 1.72 KB
Contents
--- # Copyright (c) 2018 Florian Klampfer <https://qwtel.com/> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. layout: base --- {% assign posts = site.categories[page.slug] | default:site.tags[page.slug] | default:site.posts %} {% if page.title.size > 0 %} <header> <h1 class="page-title">{{ page.title }}</h1> {% include components/message.html text=page.description hide=page.hide_description %} </header> <hr class="sr-only"/> {% endif %} {{ content }} {% assign date_formats = site.data.strings.date_formats %} {% assign list_group_by = date_formats.list_group_by | default:"%Y" %} {% assign list_entry = date_formats.list_entry | default:"%d %b" %} {% for post in posts %} {% assign currentdate = post.date | date:list_group_by %} {% if currentdate != date %} {% unless forloop.first %}</ul>{% endunless %} <h2 id="{{ list_group_by | slugify }}-{{ currentdate | slugify }}" class="hr">{{ currentdate }}</h2> <ul class="related-posts"> {% assign date = currentdate %} {% endif %} {% include components/post-list-item.html post=post format=list_entry %} {% if forloop.last %}</ul>{% endif %} {% endfor %}
Version data entries
13 entries across 13 versions & 2 rubygems