summaryrefslogtreecommitdiff
path: root/web/template/header.tmpl
blob: 059d353e0a48ccf1182fee1618cafc57b2d40c4b (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
<!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="GoToSocial Testing Instance">
	<meta name="og:description" content="">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel="stylesheet" href="/assets/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>
	<header>
		<img src="/assets/logo.png" alt="Instance Logo"/>
		<div>
			<h1>
				{{.instance.Title}}
			</h1>
		</div>
		<div></div>
	</header>