ittech/w12/views/gallery.twig
2022-05-16 01:28:21 +07:00

20 lines
No EOL
615 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<b>{{user.login}}</b>, вы смотрите свою галерею. <a href="/">На главную</a>
<hr>
{% for image in images %}
<a href="/image/{{image.id}}">
<img src="/images?filename={{image.filename}}" alt="{{image.id}}">
</a>
{% else %}
<p>Нет изображений</p>
{% endfor %}
</body>
</html>