gotosocial/web/template/header.tmpl
f0x52 fd57cca437
Opengraph meta tags (#55)
* add favicon

* add opengraph tags with title and description
2021-06-21 21:09:06 +02:00

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>