mirror of
https://github.com/alvierahman90/uploadr.git
synced 2025-01-26 10:23:24 +00:00
8 lines
139 B
HTML
8 lines
139 B
HTML
<!doctype html>
|
|
<title>Hello from Flask</title>
|
|
{% if name %}
|
|
<h1>Hello {{ name }}!</h1>
|
|
{% else %}
|
|
<h1>Hello, World!</h1>
|
|
{% endif %}
|