Dagfinn1962 commited on
Commit
fc9fdb6
1 Parent(s): 7ae2f05

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +24 -0
index.html CHANGED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Flask app</title>
5
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
6
+ </head>
7
+ <body>
8
+ <header>
9
+ <div class="container">
10
+ <h1 class="logo">Ardit's web app</h1>
11
+ <strong><nav>
12
+ <ul class="menu">
13
+ <li><a href="{{ url_for('home') }}">Home</a></li>
14
+ <li><a href="{{ url_for('about') }}">About</a></li>
15
+ </ul>
16
+ </nav></strong>
17
+ </div>
18
+ </header>
19
+ <div class="container">
20
+ {% block content %}
21
+ {% endblock %}
22
+ </div>
23
+ </body>
24
+ </html>