diff options
author | terminaldweller <thabogre@gmail.com> | 2022-11-26 07:23:48 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-11-26 07:23:48 +0000 |
commit | bf7a168d967e33365c3877acabf98bfe2fda3640 (patch) | |
tree | f4ee88583a475b90de7cab4814dfb177bde1dfe9 /template.jinja2 | |
parent | WIP, the download part is finally working (diff) | |
download | magni-bf7a168d967e33365c3877acabf98bfe2fda3640.tar.gz magni-bf7a168d967e33365c3877acabf98bfe2fda3640.zip |
first working version
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> |