diff options
Diffstat (limited to 'web/flask_proj/tut02/templates/index.html')
| -rw-r--r-- | web/flask_proj/tut02/templates/index.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/web/flask_proj/tut02/templates/index.html b/web/flask_proj/tut02/templates/index.html new file mode 100644 index 0000000..961ff77 --- /dev/null +++ b/web/flask_proj/tut02/templates/index.html @@ -0,0 +1,11 @@ + +{% extends "base.html" %} + +{% block title %} +index page +{% endblock %} + + +{% block content %} +<h1>Hello Flask Jinja</h1> +{% endblock %}
\ No newline at end of file |
