test_flask_space / templates /show-image.html
cm107's picture
Added the /show/shapes page as a demonstration for how work with images.
c9a11d0
raw
history blame
394 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Show {{ imageLabel }}</title>
<link rel="stylesheet" href="../static/css/main.css" />
</head>
<body>
<h1>Showing {{ imageLabel }}</h1>
<img src="{{ image }}">
<h1>Navigation</h1>
<li>
<a href="../..">Home</a>
</li>
</body>
</html>