2021-06-21 18:46:10 +01:00
|
|
|
<!DOCTYPE html>
|
2021-09-13 13:45:33 +01:00
|
|
|
|
2022-06-09 11:51:19 +01:00
|
|
|
<!-- header.tmpl -->
|
2021-06-21 18:46:10 +01:00
|
|
|
<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">
|
2022-06-09 11:51:19 +01:00
|
|
|
<meta name="og:title" content="{{.instance.Title}} - GoToSocial">
|
|
|
|
<meta name="og:description" content="{{.instance.ShortDescription}}">
|
|
|
|
<link rel="stylesheet" href="/assets/dist/_colors.css">
|
|
|
|
<link rel="stylesheet" href="/assets/dist/base.css">
|
2021-09-13 13:45:33 +01:00
|
|
|
{{range .stylesheets}}<link rel="stylesheet" href="{{.}}">
|
|
|
|
{{end}}
|
|
|
|
<link rel="shortcut icon" href="/assets/logo.png" type="image/png">
|
2021-06-21 18:46:10 +01:00
|
|
|
<title>{{.instance.Title}} - GoToSocial</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-06-09 11:51:19 +01:00
|
|
|
<div class="page">
|
2022-07-04 15:23:59 +01:00
|
|
|
<header>
|
|
|
|
<a aria-label="instance homepage" href="/" class="nounderline header">
|
2022-06-09 11:51:19 +01:00
|
|
|
<img src="/assets/logo.png" alt="Instance Logo"/>
|
|
|
|
<div>
|
|
|
|
<h1>
|
|
|
|
{{.instance.Title}}
|
|
|
|
</h1>
|
|
|
|
</div>
|
2022-07-04 15:23:59 +01:00
|
|
|
</a>
|
|
|
|
</header>
|
|
|
|
<div class="content">
|