vvvw/templates/hello.html

24 lines
382 B
HTML
Raw Normal View History

2020-09-08 16:00:47 +02:00
<!doctype html>
2020-09-08 16:33:34 +02:00
<html>
<style>
#draggable {
position: absolute;
}
</style>
<head>
2020-09-08 16:00:47 +02:00
<title>Hello from Flask</title>
{% if name %}
<h1>Hello {{ name }}!</h1>
{% else %}
<h1>VVVW</h1>
{% endif %}
2020-09-08 16:33:34 +02:00
</head>
<body>
<div id="draggable">
<img src="../static/images/test1.jpeg" width='500px' alt="test">
</div>
<script src="../static/js/draggable.js"></script>
</body>
</html>