You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
934 B
Python
40 lines
934 B
Python
#!/usr/bin/env python3
|
|
# vim: set sw=4 ts=4 ex
|
|
from flask import Flask, render_template, url_for
|
|
from flask_flatpages import FlatPages
|
|
from datetime import datetime
|
|
|
|
app = Flask(__name__)
|
|
app.config['FLATPAGES_EXTENSION'] = '.md'
|
|
|
|
pages = FlatPages(app)
|
|
|
|
|
|
@app.route('/<path:path>.html')
|
|
def page(path):
|
|
page = pages.get_or_404(path)
|
|
return render_template('page.html', page=page)
|
|
|
|
|
|
@app.route('/verein.html')
|
|
def verein():
|
|
return render_template('verein.html')
|
|
|
|
|
|
@app.route('/impressum.html')
|
|
def impressum():
|
|
return render_template('impressum.html')
|
|
|
|
|
|
@app.route('/')
|
|
@app.route('/index.html')
|
|
def index():
|
|
posts = [p for p in pages if "date" in p.meta]
|
|
sorted_pages = sorted(posts, reverse=True, key=lambda page:
|
|
datetime.strptime(page.meta["date"], "%d.%m.%Y"))
|
|
return render_template('index.html', pages=sorted_pages)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0')
|