diff --git a/_includes/layouts/been.njk b/_includes/layouts/been.njk new file mode 100644 index 0000000..65ccbf8 --- /dev/null +++ b/_includes/layouts/been.njk @@ -0,0 +1,29 @@ +--- +layout: layouts/base.njk +title: Been +permalink: /been/ +withSidebar: true +--- +{% set checkins = whereCheckins.checkins or [] %} + +
+
+

Been

+

+ All past check-ins captured by this site via Micropub. +

+
+ + {% if checkins.length > 1 %} +
+ {% set pastCheckins = checkins | slice(1) | reverse %} + {% for checkin in pastCheckins %} +
+ ...existing checkin rendering code from where.njk... +
+ {% endfor %} +
+ {% else %} +

No past check-ins found.

+ {% endif %} +