view madeira/templates/band/photo_detail.html @ 98:67d1d8f643d2

For issue #10, convert to HTML5.
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Oct 2013 13:38:30 -0500
parents 7b52e8ef01ec
children 846cda22d77c
line wrap: on
line source
{% extends 'base.html' %}
{% block title %}The Madeira | Photos: {{ gallery.title }}{% endblock %}
{% block custom_css %}
<link rel="stylesheet" href="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
{% endblock %}
{% block custom_js %}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="{{ STATIC_URL }}js/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<script>
$(function() {
   $('a.fancybox').fancybox();
});
</script>
{% endblock %}
{% block content %}
<h1>Madeira Photos: {{ gallery.title }}</h1>
{{ gallery.description|safe }}

<div class="madeira-photo-list">
{% for photo in photos %}
   <a href="{{ photo.image.url }}" class="fancybox" rel="madeira-gallery">
      <img src="{{ photo.get_thumbnail_url }}" alt="{{ photo.caption }}" title="{{ photo.caption }}" /></a>
{% endfor %}
</div>
<center><a href="{% url 'band.views.photos_index' %}">Photo gallery index</a></center>

{% endblock %}