11 lines
252 B
Python
11 lines
252 B
Python
|
|
from flask import Flask, render_template
|
||
|
|
|
||
|
|
app = Flask(__name__)
|
||
|
|
|
||
|
|
@app.route("/")
|
||
|
|
def hello_world():
|
||
|
|
return render_template('index.html')
|
||
|
|
|
||
|
|
@app.route("/boardgame/<int:boardgame_id>")
|
||
|
|
def get_boardgame(boardgame_id):
|
||
|
|
return "<p>Hello, World!</p>"
|