from flask import render_template from . import routes @routes.route('/') def index(): return render_template('dashboard.html') @routes.route('/dashboard') def dashboard(): return render_template('dashboard.html') @routes.route('/about') def about(): return render_template('_about.html')