Add material design icon font

This commit is contained in:
Stephan Porada
2019-07-04 11:10:38 +02:00
parent bc5ec9695f
commit 8410df3231
10 changed files with 3353 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from config import config
from flask import Flask
from flask import Flask, render_template
def create_app(config_name):
@ -9,6 +9,6 @@ def create_app(config_name):
@app.route('/')
def index():
return 'Opaque'
return render_template('base.html.j2')
return app