moving repository to gitea
This commit is contained in:
21
webapp/templates/index.html
Normal file
21
webapp/templates/index.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block page_title %}Welcome{% endblock %}
|
||||
{% block body %}
|
||||
{{ super() }}
|
||||
|
||||
<p>hello world</p>
|
||||
<p>This is a web app developed with <a href="http://flask.pocoo.org/">Flask</a> framework.</p>
|
||||
<p>The main purpose is to introduce how to implement the essential elements in web applications with Flask, including</p>
|
||||
<ul>
|
||||
<li>URL Building</li>
|
||||
<li>Authentication with Sessions</li>
|
||||
<li>Template & Template Inheritance</li>
|
||||
<li>Error Handling</li>
|
||||
<li>Integrating with Bootstrap</li>
|
||||
<li>Interaction with Database (SQLite)</li>
|
||||
<li>Invoking static resources</li>
|
||||
<li>Upload files</li>
|
||||
</ul>
|
||||
|
||||
<p>For more basic knowledge of Flask, you can refer to <a href="https://www.tutorialspoint.com/flask/">a tutorial on Tutorialspoint</a>.</p>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user