Website update. There is now a community section.
This commit is contained in:
parent
33bb6dec37
commit
2fb50e55d9
28 changed files with 1441 additions and 33 deletions
28
flask_website/views/community.py
Normal file
28
flask_website/views/community.py
Normal 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')
|
||||
Loading…
Add table
Add a link
Reference in a new issue