diff --git a/app.py b/app.py index 008c4a2..1a6fe37 100755 --- a/app.py +++ b/app.py @@ -23,11 +23,12 @@ 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 %b %y")) - return render_template('bloghome.html', pages=sorted_pages) + return render_template('index.html', pages=sorted_pages) if __name__ == '__main__': app.run(host='0.0.0.0') diff --git a/templates/bloghome.html b/templates/index.html similarity index 100% rename from templates/bloghome.html rename to templates/index.html