Files

44 lines
1.9 KiB
Handlebars
Raw Permalink Normal View History

2014-04-10 14:20:58 -04:00
<!DOCTYPE html>
<html lang="{{ctx.Locale.Lang}}" data-theme="{{ctx.CurrentWebTheme.InternalName}}">
<head>
2017-12-31 01:47:52 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{if .Title}}{{.Title}} - {{end}}{{.PageTitleCommon}}</title>
{{if .ManifestData}}<link rel="manifest" href="data:{{.ManifestData}}">{{end}}
2022-05-11 03:05:50 +02:00
<meta name="author" content="{{if .Repository}}{{.Owner.Name}}{{else}}{{MetaAuthor}}{{end}}">
<meta name="description" content="{{if .Repository}}{{.Repository.Name}}{{if .Repository.Description}} - {{.Repository.Description}}{{end}}{{else}}{{MetaDescription}}{{end}}">
2017-04-01 03:03:01 +02:00
<meta name="keywords" content="{{MetaKeywords}}">
<meta name="referrer" content="same-origin">{{/* required by: 1. "redirect_to" cookie; 2. cross-origin protection */}}
{{if .GoGetImport}}
<meta name="go-import" content="{{.GoGetImport}} git {{.RepoCloneLink.HTTPS}}">
<meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}">
2022-03-13 17:40:47 +01:00
{{end}}
2022-11-21 13:14:58 +08:00
{{if and .EnableFeed .FeedURL}}
2022-03-13 17:40:47 +01:00
<link rel="alternate" type="application/atom+xml" title="" href="{{.FeedURL}}.atom">
<link rel="alternate" type="application/rss+xml" title="" href="{{.FeedURL}}.rss">
{{end}}
<link rel="icon" href="{{AssetUrlPrefix}}/img/favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="{{AssetUrlPrefix}}/img/favicon.png" type="image/png">
2023-09-01 18:59:24 +02:00
{{template "base/head_opengraph" .}}
{{template "base/head_style" .}}
2025-08-27 19:00:01 +08:00
{{template "base/head_script" .}}
2023-05-27 12:06:08 +02:00
{{template "custom/header" .}}
2015-03-07 15:12:13 -05:00
</head>
<body hx-swap="outerHTML" hx-ext="morph" hx-push-url="false">
{{template "custom/body_outer_pre" .}}
2015-03-07 15:12:13 -05:00
<div class="full height">
<noscript>{{ctx.Locale.Tr "enable_javascript"}}</noscript>
2015-08-10 16:38:21 +02:00
{{template "custom/body_inner_pre" .}}
2015-07-08 01:09:03 +08:00
{{if not .PageIsInstall}}
{{template "base/head_navbar" .}}
2015-07-08 01:09:03 +08:00
{{end}}
{{if false}}
{{/* to make html structure "likely" complete to prevent IDE warnings */}}
2015-12-07 23:30:52 +01:00
</div>
</body>
</html>
{{end}}