TorrentIndexer/indexer.py
sqozz 72daa11c33 Added newst version of Bootstrap
Added "create" menupoint
Added icons to the menupoints
2015-02-05 22:38:39 +01:00

20 lines
418 B
Python

#!/usr/bin/python3
#/* vim:set ts=2 set noexpandtab */
from flask import Flask, render_template, url_for
app = Flask(__name__)
@app.route("/")
def index():
return render_template("search.html")
@app.route("/categorys")
def categorys():
return render_template("categorys.html")
@app.route("/create")
def create():
return render_template("create.html")
if __name__ == "__main__":
app.run(debug=True)