we are cooking now
This commit is contained in:
parent
168f72a417
commit
f9db0dba0b
2 changed files with 8 additions and 1 deletions
7
src/toastbin/app.py
Normal file
7
src/toastbin/app.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from flask import Flask, render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def index:
|
||||
return render_template
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>toastbin</title>
|
||||
<title>toastbin - {{ instance }}</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
Loading…
Add table
Reference in a new issue