feat: Add podcast home page
All checks were successful
Build Docker / Build Image (push) Successful in 50s

This commit is contained in:
Nathan Woodburn 2024-05-19 21:53:10 +10:00
parent 3bf9e043fe
commit bf6236e60b
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -125,6 +125,11 @@ def nostr():
# Main routes
@app.route('/')
def index():
# Check if host if podcast.woodburn.au
if "podcast.woodburn.au" in request.host:
return render_template('podcast.html')
global address
global handshake_scripts
try: