Update app.py
Browse files
app.py
CHANGED
|
@@ -593,6 +593,21 @@ def frontpage():
|
|
| 593 |
def home():
|
| 594 |
return render_template('home.html')
|
| 595 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 596 |
@app.route('/Optimization')
|
| 597 |
def Optimization():
|
| 598 |
return render_template('Optimization.html', active_page='Optimization')
|
|
|
|
| 593 |
def home():
|
| 594 |
return render_template('home.html')
|
| 595 |
|
| 596 |
+
@app.route("/about")
|
| 597 |
+
def about():
|
| 598 |
+
return render_template("about.html", active_page="about")
|
| 599 |
+
|
| 600 |
+
|
| 601 |
+
@app.route("/privacy")
|
| 602 |
+
def privacy():
|
| 603 |
+
return render_template("privacy.html", active_page="privacy")
|
| 604 |
+
|
| 605 |
+
|
| 606 |
+
@app.route("/contact")
|
| 607 |
+
def contact():
|
| 608 |
+
return render_template("contact.html", active_page="contact")
|
| 609 |
+
|
| 610 |
+
|
| 611 |
@app.route('/Optimization')
|
| 612 |
def Optimization():
|
| 613 |
return render_template('Optimization.html', active_page='Optimization')
|