Sha256: db07d61cc2ef0be3c30a1747c1c6da73b67d26021015d9d44d5aecc2f65d093c

Contents?: true

Size: 478 Bytes

Versions: 2

Compression:

Stored size: 478 Bytes

Contents

{% comment %}

## This week

{% assign posts_dates = site.trainings | sort: "date" | map: "date" %}
{% assign no_posts = 0 %}
{% assign now_week = 'now | date: "%W" %}
{% for date in posts_dates %}
  {% assign post_week = date | date: "%W" %}
  {% if post_week == now_week %}
    {% assign no_posts = no_posts | plus: 1 %}
  {% endif  %}
{% endfor %}
{% assign posts = site.trainings | sort: "date" %}
{% include blog-list.html summary=false limit=no_posts %}

{% endcomment %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-chaos-0.1.1 _includes/trainings_this_week
jekyll-theme-chaos-0.1.0 _includes/trainings_this_week