comparison gpp/templates/potd/potd_block.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children f43f8a956f1d
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'side_block.html' %}
2 {% block block_title %}Photo of the Day{% endblock %}
3 {% block block_content %}
4 {% if potd %}
5 <center>
6 <img src="{{ potd.thumb.url }}" alt="{{ potd.caption }}" title="{{ potd.caption }}" /><br />
7 <a href="{% url potd-view %}">{{ potd.caption }}</a>
8 </center>
9 {% else %}
10 <p>No photo at this time.</p>
11 {% endif %}
12 {% endblock %}