legit/templates/head.html

13 lines
490 B
HTML
Raw Normal View History

2022-12-11 05:52:47 +00:00
{{ define "head" }}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-12-13 06:20:39 +00:00
<link rel="stylesheet" href="/static/style.css" type="text/css">
2022-12-17 07:16:09 +00:00
<link rel="stylesheet" href="https://cdn.icyphox.sh/fonts/inter.css" type="text/css">
2022-12-19 03:32:23 +00:00
{{ if .servername }}
<meta name="go-import" content="{{ .servername}}/{{ .name }} git https://{{ .servername }}/{{ .name }}">
2022-12-18 14:30:19 +00:00
{{ end }}
2022-12-11 05:52:47 +00:00
<!-- other meta tags here -->
</head>
{{ end }}