Added dummy css, js and html files

This commit is contained in:
Administrator 2022-03-14 15:53:11 +01:00
parent e785d9abee
commit 412ec06144
4 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import os import os
from flask import Blueprint from flask import Blueprint, render_template
interface = Blueprint('interface', __name__, url_prefix='/') interface = Blueprint('interface', __name__, url_prefix='/')
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) __location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
@ -9,4 +9,4 @@ __location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file
# Return all tags # Return all tags
@interface.route('/', methods=['GET']) @interface.route('/', methods=['GET'])
def get_tags(): def get_tags():
return "Konfiguration" render_template("index.html")

View File

View File

View File