--- layout: layouts/base.njk title: Where permalink: /slashpage/where/ withSidebar: true --- {% set checkins = whereCheckins.checkins or [] %}

Where

Recent check-ins captured by this site via Micropub.

A where page is a place on the web to let others know about your current location. Thanks to Aaron Parecki for ownyourswarm.

{% if checkins.length %}
{% set checkin = checkins[0] %}

{{ 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 %}
{% else %}

No check-ins found.

{% endif %}

See all past check-ins →