Primer upload, esta en un estado bastante decente la pagina <3
This commit is contained in:
17
www/projects.py
Normal file
17
www/projects.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from flask import (
|
||||
Blueprint, flash, g, redirect, render_template, request, url_for
|
||||
)
|
||||
|
||||
from werkzeug.exceptions import abort
|
||||
import markdown as md
|
||||
|
||||
from www.db import get_db
|
||||
from www.admin import admin_required
|
||||
|
||||
bp = Blueprint('projects', __name__, url_prefix='/projects')
|
||||
|
||||
@bp.route('/')
|
||||
def index():
|
||||
return render_template('empty.html')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user