Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created April 1, 2015 11:39
Show Gist options
  • Save fchevitarese/ae4f1bb4810d7e285f25 to your computer and use it in GitHub Desktop.
Save fchevitarese/ae4f1bb4810d7e285f25 to your computer and use it in GitHub Desktop.
<html>
<body>
<h1>Gallery</h1>
{% if gallery %}
{% for photo in gallery %}
<p><img src="media/{{ photo.photo }}"></p>
<p>{{ photo.description }}</p>
{% endfor %}
{% endif %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment