added pesrpective a
This commit is contained in:
parent
88a7b13f9d
commit
2595e783de
Binary file not shown.
7
hello.py
7
hello.py
@ -8,7 +8,6 @@ def hello_world():
|
||||
return 'Hello, World!'
|
||||
|
||||
|
||||
@app.route('/hello/')
|
||||
@app.route('/hello/<name>')
|
||||
def hello(name=None):
|
||||
return render_template('hello.html', name=name)
|
||||
@app.route('/perspectiveA/')
|
||||
def perspectiveA():
|
||||
return render_template('perspectiveA.html')
|
||||
|
9
templates/perspectiveA.html
Normal file
9
templates/perspectiveA.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Perspective A</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>persssss</h1>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user