From 1035af4e3f2dd9bc67512c87deab65a4fe4f3f48 Mon Sep 17 00:00:00 2001 From: Kyrre Havik Date: Sat, 2 Mar 2024 23:19:08 +0100 Subject: [PATCH] feat: a page for daily checkins --- _includes/header.html | 3 +++ checkins.html | 54 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 checkins.html diff --git a/_includes/header.html b/_includes/header.html index f9c1774..f07cfff 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -18,6 +18,9 @@
  • Breweries
  • +
  • + Checkins +
  • Countries
  • diff --git a/checkins.html b/checkins.html new file mode 100644 index 0000000..83e650a --- /dev/null +++ b/checkins.html @@ -0,0 +1,54 @@ +--- +layout: default +--- + + + +
    + {% assign title = site.data.beers %} +
    + + + + + + + + + + + + + {% for checkin in site.data.checkins_by_day %} + + + + + + + + {% endfor %} + +
    YearMonthDayCheckinsUnique checkins
    + {{ checkin.year }} + + {{ checkin.month }} + + {{ checkin.day }} + + {{ checkin.checkins }} + + {{ checkin.unique_checkins }} +
    +
    +
    + +