diff options
Diffstat (limited to 'template.jinja2')
-rw-r--r-- | template.jinja2 | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/template.jinja2 b/template.jinja2 index a4019a7..e307b6b 100644 --- a/template.jinja2 +++ b/template.jinja2 @@ -7,8 +7,12 @@ <title>{% block title %}{% endblock %}</title> </head> <body style="font-size:14px;"> - <div> - - </div> + <p align="center"> + <div> + {% for image in image_list %} + <img src={{image}} alt=""> + {% endfor %} + </div> + </p> </body> </html> |