--- layout: layouts/base.njk title: Photos withSidebar: true pagination: data: collections.photos size: 20 alias: paginatedPhotos generatePageOnEmptyData: true permalink: "photos/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber + 1 }}/{% endif %}" ---

Photos

{% set sparklineSvg = collections.photos | postingFrequency %} {% if sparklineSvg %}
{{ sparklineSvg | safe }}
{% endif %}

Photo posts and images. ({{ collections.photos.length }} total)

{% if paginatedPhotos.length > 0 %} {# Pagination controls #} {% if pagination.pages.length > 1 %} {% endif %} {% else %} {% set postType = "photo" %} {% include "components/empty-collection.njk" %} {% endif %}