feat: Add podcast home page
All checks were successful
Build Docker / Build Image (push) Successful in 50s
All checks were successful
Build Docker / Build Image (push) Successful in 50s
This commit is contained in:
parent
3bf9e043fe
commit
bf6236e60b
@ -125,6 +125,11 @@ def nostr():
|
|||||||
# Main routes
|
# Main routes
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
def index():
|
def index():
|
||||||
|
# Check if host if podcast.woodburn.au
|
||||||
|
if "podcast.woodburn.au" in request.host:
|
||||||
|
return render_template('podcast.html')
|
||||||
|
|
||||||
|
|
||||||
global address
|
global address
|
||||||
global handshake_scripts
|
global handshake_scripts
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user