This commit is contained in:
abhiram v
2024-10-17 22:45:58 +00:00
parent b0906f52f7
commit b5ca78551f
46 changed files with 1706 additions and 30 deletions

15
app.py
View File

@@ -1,3 +1,8 @@
# TODO
# Fix all text sizes across all pages except competition log
# Fix all top margins (do 20ish vh instead)
from flask import Flask, render_template
app = Flask(__name__)
@@ -19,13 +24,17 @@ def robot():
def competitions():
return render_template('competitions.html')
@app.route('/awards')
def awards():
return render_template('awards.html')
# @app.route('/awards')
# def awards():
# return render_template('awards.html')
@app.route('/contact')
def contact():
return render_template('contact.html')
@app.route('/sponsors')
def sponsors():
return render_template('sponsors.html')
if __name__ == '__main__':
app.run(debug=True)