blob: df501b1baa896e1d16c5ab2c21b95b4a82847e83 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>${title}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/basic.css">
<link rel="stylesheet" href="style/blue.css">
</head>
<body>
<div id="page">
<div id="top">
<div id="langselect">${langselect}</div>
<!--<span>English</span> | <a href="index_sv.html">Svenska</a></div>-->
<h1>${sitename}</h1>
</div>
<div id="menu">
<ul>
${menu_li}
</ul>
</div>
<div id="content">
${content}
</div>
<div id="footer">
${footer}
</div>
</div>
</body>
</html>
|