pypowerdns/app/views/main.py
2013-01-07 16:09:05 -02:00

8 lines
153 B
Python

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