2018-09-26 02:59:06 -04:00
|
|
|
# coding:utf-8
|
|
|
|
|
|
2018-09-26 08:02:11 -04:00
|
|
|
from flask import Blueprint, render_template
|
2018-09-26 02:59:06 -04:00
|
|
|
|
|
|
|
|
soft = Blueprint('soft', __name__, template_folder='templates')
|
|
|
|
|
|
2018-09-26 08:02:11 -04:00
|
|
|
|
2018-09-26 02:59:06 -04:00
|
|
|
@soft.route("/")
|
2018-09-26 08:02:11 -04:00
|
|
|
def index ():
|
|
|
|
|
return render_template('default/soft.html')
|