core/flask/templates/page.html

7 lines
129 B
HTML
Raw Normal View History

2023-01-07 18:55:55 +05:00
<!doctype html>
<title>Hello from Flask</title>
{% if id %}
<h1>Hello {{ id }}!</h1>
{% else %}
<h1>Hello World!</h1>
{% endif %}