more struture and codes for application

This commit is contained in:
Luiz Gustavo Costa (gugabsd)
2013-01-07 16:09:05 -02:00
parent 0c03506c24
commit af4ea865a7
12 changed files with 183 additions and 0 deletions

8
app/views/main.py Normal file
View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from flask import render_template
from app import app
@app.route("/")
def index():
return render_template('principal.html')