Website update. There is now a community section.

This commit is contained in:
Armin Ronacher 2010-05-18 17:56:51 +02:00
parent 33bb6dec37
commit 2fb50e55d9
28 changed files with 1441 additions and 33 deletions

View file

@ -0,0 +1,28 @@
from flask import Module, render_template
from flask_website.twitter import flask_tweets
community = Module(__name__, url_prefix='/community')
@community.route('/')
def index():
return render_template('community/index.html')
@community.route('/irc/')
def irc():
return render_template('community/irc.html')
@community.route('/twitter/')
def twitter():
return render_template('community/twitter.html', tweets=flask_tweets)
@community.route('/badges/')
def badges():
return render_template('community/badges.html')
@community.route('/logos/')
def logos():
return render_template('community/logos.html')