{% extends "base.html" %} {% block title %}{% if image.ai_title %}{{ image.ai_title }}{% if image.exif and image.exif.camera %} | {{ image.exif.camera.display_name }}{% endif %} — {{ site_title }}{% endif %}{% endblock %} {% block meta_description %}{% if image.ai_description %}{{ image.ai_description }}{% else %}{{ site_tagline }}{% endif %}{% endblock %} {% block og_title %}{% if image.ai_title %}{{ image.ai_title }}{% else %}Photo{% endif %}{% endblock %} {% block og_description %}{% if image.ai_description %}{{ image.ai_description }}{% elif image.exif and image.exif.camera %}Shot on {{ image.exif.camera.display_name }}{% endif %}{% endblock %} {% block og_type %}article{% endblock %} {% block og_image %}{% if image.thumbnail_large %}{% elif image.thumbnail_medium %}{% endif %}{% endblock %} {% block twitter_card %}summary_large_image{% endblock %} {% block twitter_title %}{% if image.ai_title %}{{ image.ai_title }}{% else %}Photo{% endif %}{% endblock %} {% block twitter_description %}{% if image.ai_description %}{{ image.ai_description }}{% elif image.exif and image.exif.camera %}Shot on {{ image.exif.camera.display_name }}{% endif %}{% endblock %} {% block twitter_image %}{% if image.thumbnail_large %}{% elif image.thumbnail_medium %}{% endif %}{% endblock %} {% block head %} {% if image.tags.all %}{% endif %} {% if image.exif and image.exif.gps_latitude and image.exif.gps_longitude %} {% endif %} {% endblock %} {% block content %}
{% if image.thumbnail_large %}{{ image.ai_title|default:image.title }} {% elif image.thumbnail_medium %}{{ image.ai_title|default:image.title }} {% elif image.thumbnail_small %}{{ image.ai_title|default:image.title }}{% endif %}
{% if prev_image %}← Previous{% else %}{% endif %}
Download
{% if next_image %}Next →{% else %}{% endif %}
{% if image.ai_title %}

{{ image.ai_title }}

{% endif %} {% if image.ai_description %}

{{ image.ai_description }}

{% endif %} {% if image.exif %}
{% if image.exif.camera %} {% endif %} {% if image.exif.lens %} {% endif %} {% if image.exif.focal_length %}
Focal Length {{ image.exif.focal_length }}mm
{% endif %} {% if image.exif.aperture %}
Aperture f/{{ image.exif.aperture }}
{% endif %} {% if image.exif.shutter_speed %}
Shutter Speed {{ image.exif.shutter_speed }}s
{% endif %} {% if image.exif.iso %}
ISO {{ image.exif.iso }}
{% endif %} {% if image.exif.date_taken %}
Date Taken {{ image.exif.date_taken|date:"N j, Y" }}
{% endif %}
{% endif %}
{% if image.tags.all %}
{% for tag in image.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}

{{ image.view_count }} views

{% if image.exif and image.exif.gps_latitude and image.exif.gps_longitude %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}