mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-06 09:16:19 -06:00
24 lines
494 B
Python
24 lines
494 B
Python
from flask import Blueprint, redirect, render_template, url_for, request
|
|
|
|
blueprint = Blueprint('static', __name__)
|
|
|
|
|
|
@blueprint.route('/about')
|
|
def about():
|
|
return render_template('pages/about.html')
|
|
|
|
|
|
@blueprint.route('/terms_of_service')
|
|
def tos():
|
|
return render_template('static/tos.html')
|
|
|
|
|
|
@blueprint.route('/privacy')
|
|
def privacy():
|
|
return render_template('static/privacy.html')
|
|
|
|
|
|
@blueprint.route('/license')
|
|
def license():
|
|
return render_template('static/license.html')
|