12 lines
257 B
Python
12 lines
257 B
Python
|
from flask import Blueprint, render_template
|
||
|
|
||
|
views = Blueprint(
|
||
|
name='common',
|
||
|
import_name=__name__,
|
||
|
template_folder='templates',
|
||
|
static_folder='static'
|
||
|
)
|
||
|
|
||
|
@views.route('/privacy/')
|
||
|
def _privacy():
|
||
|
return render_template('privacy.html')
|