blob: d6c1a0bc9802e9ccd65b4e5774f78cb862065fd3 (
plain)
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
|
<!doctype html>
<html>
<head>
<link rel='stylesheet' href="{{url_for('static', filename='style.css')}}">
</head>
<body>
<div id=wrapper>
<header>
<span>
<nav id=links>
<ul>
{% for name, link in links %}
<li>
<a href={{link}}>{{name}}</a>
</li>
{% endfor %}
</ul>
</nav>
</span>
<div id=headerflex>
<div id=headers>
<a href="/" id=TheTitle><h1>{{title}}</h1></a>
<nav id=articles>
<ul>
{% for name, link in articles %}
<li>
<a href={{link}}>{{name}}</a>
</li>
{% endfor %}
</ul>
</nav>
</div>
<a href="/">
<img alt={{image[0]}} src={{image[1]}}>
</a>
</div>
</header>
<article>
{% block content %}
{% endblock %}
</article>
<footer>
<p>Web design is my passion</p>
</footer>
</div>
</body>
</html>
|