---
layout: layouts/been.njk
title: Been
permalink: /been/
description: All past check-ins captured by this site via Micropub.
withSidebar: true
leafletMap: true
---
{% set checkins = whereCheckins.checkins or [] %}
Been
All past check-ins captured by this site via Micropub.
{% set mapPoints = [] %}
{% for c in checkins %}
{% if c.latitude and c.longitude %}
{% set mapPoints = (mapPoints.push({name: c.name, lat: c.latitude, lng: c.longitude, url: c.venueWebsiteUrl}), mapPoints) %}
{% endif %}
{% endfor %}
{% if mapPoints.length %}
{% endif %}
{% if checkins.length %}