This commit is contained in:
alvierahman90
2017-10-24 21:34:55 +01:00
commit 4d392c3901
18 changed files with 7027 additions and 0 deletions

7
templates/hello.html Normal file
View File

@@ -0,0 +1,7 @@
<!doctype html>
<title>Hello from Flask</title>
{% if name %}
<h1>Hello {{ name }}!</h1>
{% else %}
<h1>Hello, World!</h1>
{% endif %}