Serve random images with automatic refresh

This commit is contained in:
Michael Mandl 2018-11-05 21:57:26 +01:00
parent 96993ac3d0
commit 5031b1e8a2
3 changed files with 13 additions and 13 deletions

View file

@ -1,8 +0,0 @@
<html>
<body>
<p>Hello slider number {{ num }}!</p>
<p><img src="{{ url_for("static", filename="cat.jpg") }}"></p>
<p><a href="{{ url_for("image", filename="IMG_0001.jpg") }}">Image</a></p>
<p><a href="{{ url_for("random_image") }}">Random Image</a></p>
</body>
</html>

8
templates/random.html Normal file
View file

@ -0,0 +1,8 @@
<html>
<head>
<meta http-equiv="refresh" content="5;url={{ url_for("random") }}">
</head>
<body bgcolor="black">
<img src="{{ url_for("random_image") }}" style="height: 98%; width: 100%; object-fit: contain"/>
</body>
</html>