--- layout: layouts/been.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 %}
{% for checkin in checkins %}{% if not loop.first %}

{{ checkin.name }}

{% if checkin.locationText or checkin.postalCode %}

{{ checkin.locationText }}{% if checkin.locationText and checkin.postalCode %}, {% endif %}{{ checkin.postalCode }}

{% endif %}
{% if checkin.published %} {% endif %} {% if checkin.coordinatesText %} {{ checkin.coordinatesText }} {% endif %} {% if checkin.isPrivate %} Private {% endif %} {% if checkin.checkedInBy and (checkin.checkedInBy.name or checkin.checkedInBy.url) %} Checked in by {% if checkin.checkedInBy.url %}{{ checkin.checkedInBy.name or checkin.checkedInBy.url }}{% else %}{{ checkin.checkedInBy.name }}{% endif %} {% endif %}
{% if checkin.tags and checkin.tags.length %}
{% for tag in checkin.tags | head(8) %} #{{ tag }} {% endfor %}
{% endif %} {% if checkin.taggedPeople and checkin.taggedPeople.length %}
{% for person in checkin.taggedPeople | head(6) %} {% if person.url %} {{ person.name or person.url }} {% else %} {{ person.name }} {% endif %} {% endfor %}
{% endif %}
{% if checkin.mapUrl %} Map {% endif %} {% if checkin.venueWebsiteUrl %} Website {% endif %} {% if checkin.venueSocialUrl %} Social {% endif %}
{% if checkin.photos and checkin.photos.length %}
{% for photo in checkin.photos | head(3) %} Check-in photo {% endfor %}
{% endif %}
{% endif %}{% endfor %}
{% else %}

No past check-ins found.

{% endif %}

Back to newest check-in →