This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/emails/email-template-viewer.html
2016-08-04 11:55:16 -07:00

17 lines
No EOL
347 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Email Template Viewer</title>
</head>
<body>
<h1>Email Template Viewer</h1>
Here is a list of the templates available:
<ul>
{% for template in templates %}
{% if template != 'email-template-viewer' %}
<li><a href="{{template}}">{{template}}</a></li>
{% endif %}
{% endfor %}
</ul>
</body>
</html>