-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.py
49 lines (30 loc) · 876 Bytes
/
website.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from flask import Flask
from flask import render_template
from flask import Response, request, jsonify
app = Flask(__name__)
@app.route('/')
def mission(name=None):
return render_template('mission.html')
@app.route('/join')
def join(name=None):
return render_template('join.html')
@app.route('/minecraft')
def minecraft(name=None):
return render_template('minecraft.html')
@app.route('/team')
def team(name=None):
return render_template('team.html')
@app.route('/faq')
def faq(name=None):
return render_template('faq.html')
@app.route('/contact')
def contact(name=None):
return render_template('contact.html')
@app.route('/rank')
def rank(name=None):
return render_template('rank.html')
@app.route('/explore')
def explore(name=None):
return render_template('explore.html')
if __name__ == '__main__':
app.run(debug = True)