bookie-python/templates/image.html
2014-10-24 18:34:28 -04:00

11 lines
No EOL
325 B
HTML

{% extends "layout.html" %}
{% block title %} | {{b.title}}{% endblock %}
{% block body %}
<div class="image_embed">
<img src="{{b.url}}" alt="Image for {{b.short}}" class="image_embed" />
</div>
<div class="image_caption">
<h3>{{b.title}}</h3>
<p>{{b.note}}</h3>
</div>
{% endblock %}