19 lines
575 B
Cheetah
19 lines
575 B
Cheetah
<!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}}">
|
|
<meta name="og:description" content="{{.instance.Description}}">
|
|
<link rel="stylesheet" href="/assets/bundle.css">
|
|
<link rel="shortcut icon" href="/assets/sloth.png" type="image/png">
|
|
<title>{{.instance.Title}} - GoToSocial</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>
|
|
{{.instance.Title}}
|
|
</h1>
|
|
</header> |