You cannot 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
454 B
Python
24 lines
454 B
Python
from flask import Flask
|
|
from flask import render_template
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('master.html')
|
|
|
|
@app.route('/projects')
|
|
def projects():
|
|
return render_template('master.html', subpage='Projekte')
|
|
|
|
@app.route('/monitoring')
|
|
def monitoring():
|
|
return 'link to monitoring'
|
|
|
|
|
|
@app.route('/disclaimer')
|
|
def disclaimer():
|
|
return render_template('master.html', subpage='Disclaimer')
|
|
|
|
|
|
|