You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
#!/usr/bin/env python3
|
|
|
|
from flask import Flask, url_for, request, render_template, abort
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
@app.route('/achievements')
|
|
def achievements():
|
|
return render_template('achievements.html')
|
|
|
|
@app.route('/school')
|
|
def school():
|
|
return render_template('school.html')
|
|
|
|
@app.route('/projects')
|
|
def projects():
|
|
return render_template('projects.html')
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|