about summary refs log tree commit diff
path: root/templates/base.html
blob: 30c7a45deefc26e2d4387e6ab9130c99ca5cf714 (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
<!DOCTYPE html>
<html>

<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta charset="utf-8" />

	<link rel="icon" type="image/gif" href="/faces/triblur/triblur_94.gif" />

	<title>{title}</title>

	<link rel="stylesheet" href="/styles/common.css" />
	{%pattern styles}
	<link rel="stylesheet" href="{style}" />
	{%end}
</head>

<body>
	<ul id="nav-access">
		<li><a href="#main-content">Skip to main content</a></li>
	</ul>
	{%wrapped-content}
</body>

</html>