vvvw/templates/hello.html

8 lines
130 B
HTML
Raw Normal View History

2020-09-08 16:00:47 +02:00
<!doctype html>
<title>Hello from Flask</title>
{% if name %}
<h1>Hello {{ name }}!</h1>
{% else %}
<h1>VVVW</h1>
{% endif %}