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

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

	{%if-set og_description}
	<!-- og. required tags. is an image requried? i do not have one.-->
	<meta property="og:title" content="{og_title}" />
	<meta property="og:type" content="website" />
	<meta property="og:url" content="{og_url}" />

	<!-- og. not required but helps make better cards, etc. -->
	<meta property="og:description" content="{og_description}" />
	{%end}

	<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>