core/flask/templates/page.html

7 lines
129 B
HTML
Executable File

<!doctype html>
<title>Hello from Flask</title>
{% if id %}
<h1>Hello {{ id }}!</h1>
{% else %}
<h1>Hello World!</h1>
{% endif %}