commit for 23344

This commit is contained in:
abhiram v
2025-02-12 02:28:35 +00:00
parent b92f01958b
commit c8cb73cd14
14 changed files with 469 additions and 103 deletions

8
app.py
View File

@@ -36,5 +36,13 @@ def contact():
def sponsors():
return render_template('sponsors.html')
@app.route('/robots')
@app.route('/robots/<type>')
def robots(type=None):
if type is None:
return render_template('robots.html')
else:
return render_template(f'robots-{type}.html')
if __name__ == '__main__':
app.run(debug=True)