diff --git a/server.py b/server.py index d3ce363..2b73f50 100644 --- a/server.py +++ b/server.py @@ -8,6 +8,10 @@ app = Flask(__name__) @app.route('/') def hello(): return render_template('index.html') + +@app.route('/add_page') +def add_page(): + return render_template('add_page.html') @app.route('/statics/') def statics(file_name): diff --git a/templates/add_page.html b/templates/add_page.html new file mode 100644 index 0000000..b580633 --- /dev/null +++ b/templates/add_page.html @@ -0,0 +1,30 @@ + + + Nyako Page + + + + + +
+ Head Image +
+
+

Добавить страницу

+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index b1d56b4..49d3ec0 100644 --- a/templates/index.html +++ b/templates/index.html @@ -17,7 +17,11 @@