17 lines
No EOL
347 B
HTML
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> |