You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
HTML
19 lines
484 B
HTML
{% extends "public/templates/public_template.html" %}
|
|
|
|
{% block title %}ABOUT TACTICAL WATERMARKS{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="spaceleft">
|
|
<h3>Republished Titles</h3>
|
|
|
|
{% for cover in covers %}
|
|
<div class="cover">
|
|
<img src="{{ url_for('static', filename='covers/' + cover) }}"></img>
|
|
<figcaption><a href="{{ url_for('static', filename='covers/' + cover) }}">{{ cover }}</a></figcaption>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
{% endblock %}
|