15 lines
304 B
Python
15 lines
304 B
Python
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')
|