basic structure, master template
This commit is contained in:
parent
75318b5b35
commit
73b1ce69db
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
venv/
|
venv/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
*.swp
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
from flask import Flask
|
from flask import Flask
|
||||||
|
from flask import render_template
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
def index():
|
def index():
|
||||||
return 'Index Page'
|
return render_template('master.html')
|
||||||
|
|
||||||
@app.route('/projects')
|
@app.route('/projects')
|
||||||
def projects():
|
def projects():
|
||||||
return 'My Projects'
|
return render_template('master.html', subpage='Projekte')
|
||||||
|
|
||||||
@app.route('/monitoring')
|
@app.route('/monitoring')
|
||||||
def monitoring():
|
def monitoring():
|
||||||
@ -16,8 +17,7 @@ def monitoring():
|
|||||||
|
|
||||||
@app.route('/disclaimer')
|
@app.route('/disclaimer')
|
||||||
def disclaimer():
|
def disclaimer():
|
||||||
return 'disclaimer'
|
return render_template('master.html', subpage='Disclaimer')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1
static/style.css
Normal file
1
static/style.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
15
templates/master.html
Normal file
15
templates/master.html
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
<docctype html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="icon" href="favicon.png" type="image/x-icon">
|
||||||
|
{% if subpage %}
|
||||||
|
<title>Felix Pankratz - {{subpage}}</title>
|
||||||
|
{% else %}
|
||||||
|
<title>Felix Pankratz</title>
|
||||||
|
{% endif %}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Felix Pankratz</h1>
|
||||||
|
</h2>Persönliche Webseite</h2>
|
||||||
|
</body>
|
Loading…
Reference in New Issue
Block a user