uploadr/templates/hello.html

8 lines
139 B
HTML
Raw Normal View History

2017-10-24 20:34:55 +00:00
<!doctype html>
<title>Hello from Flask</title>
{% if name %}
<h1>Hello {{ name }}!</h1>
{% else %}
<h1>Hello, World!</h1>
{% endif %}