Create editor files

This commit is contained in:
2022-06-18 09:39:31 +01:00
parent 69a0791a6d
commit bed186f6b5
6 changed files with 16 additions and 2 deletions

View File

View File

View File

@ -0,0 +1,12 @@
from flask import Blueprint, render_template
editor = Blueprint(
name='editor',
import_name=__name__,
template_folder='templates',
static_folder='static'
)
@editor.route('/')
def _editor():
return render_template('/editor/index.html')