PDMI/LBI_PiPy/views.py

17 lines
345 B
Python
Raw Normal View History

2019-04-28 18:49:02 +02:00
import os
from flask import render_template, Blueprint, send_from_directory
main_bp = Blueprint('', __name__)
@main_bp.route('/')
def index():
return render_template("index.html")
@main_bp.route('/favicon.ico')
def favicon():
return send_from_directory('static','favicon.ico', mimetype='image/vnd.microsoft.icon')