{% extends "pgallery/base_photos.html" %}
{% load url from future %}
{% load i18n %}
{% block title %}{{ gallery.title }} | {{ block.super }}{% endblock %}
{% block og-type %}article{% endblock %}
{% block og-title %}{{ gallery.title }} | {{ block.super }}{% endblock %}
{% block og-url %}{{ gallery.get_absolute_url }}{% endblock %}
{% block extra-head %}
{% endblock %}
{% block content %}
{{ gallery.title }}
{% include "pgallery/gallery_menu.html" %}
{{ gallery.description }}
{% include "pgallery/thumbnail_list.html" with photo_list=gallery.photos.all %}
{% endblock %}