tellicoViewer/templates/book.html

9 lines
285 B
HTML

<!doctype html>
<title>{{book["title"]}}</title>
{% if book["cover"] is not equalto "" %}
<p> <img src="{{ url_for('static', filename="library_files/" + book["cover"]) }}"> </p>
{% endif %}
{% for datum in (book|dictsort) %}
<p> {{names[datum[0]]}}: {{ datum[1] }} </p>
{% endfor %}