summaryrefslogtreecommitdiff
path: root/web/template/header.tmpl
blob: 86f5cca89f5befecb4bf451ff482fc9d1352a7bc (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
<!DOCTYPE html>

<!-- header.tmpl -->
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta name="og:title" content="{{.instance.Title}} - GoToSocial">
	<meta name="og:description" content="{{.instance.ShortDescription}}">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel="stylesheet" href="/assets/dist/_colors.css">
	<link rel="stylesheet" href="/assets/dist/base.css">
	{{range .stylesheets}}<link rel="stylesheet" href="{{.}}">
	{{end}}
	<link rel="shortcut icon" href="/assets/logo.png" type="image/png">
	<title>{{.instance.Title}} - GoToSocial</title>
</head>
<body>
	<div class="page">
		<a href="/" class="nounderline">
			<header>
				<img src="/assets/logo.png" alt="Instance Logo"/>
				<div>
					<h1>
						{{.instance.Title}}
					</h1>
				</div>
				<div></div>
			</header>
		</a>