use 'latest' library versions for maximum lifespan as an example
[gae-samples.git] / image_sharing / index.html
blobbbe949148ffa4d27e8e978cde5ad0c72a48706d7
1 {% extends "base.html" %}
2 {% block title %}Browsing Albums{% endblock %}
3 {% block content %}
4 {% for album in albums %}
5 <div class='albumpreview'>
6 <div class='albumtitle'><a href='/album/{{album.key}}'>{{album.name}}</a></div>
7 <div class='albumcreator'>{{album.creator.nickname}}</div>
8 </div>
9 {% endfor %}
10 <a href='/search'>Search by tag</a><br>
11 <a href='/new'>Create a new album</a>
12 {% endblock %}