Primer upload, esta en un estado bastante decente la pagina <3

This commit is contained in:
Daniel Cortes
2019-02-13 06:12:24 -03:00
commit 85dc398ab6
22 changed files with 1671 additions and 0 deletions

17
www/projects.py Normal file
View 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')