2014-04-10 14:20:58 -04:00
|
|
|
<!DOCTYPE html>
|
2025-10-28 18:25:00 +08:00
|
|
|
<html lang="{{ctx.Locale.Lang}}" data-theme="{{ctx.CurrentWebTheme.InternalName}}">
|
2021-10-15 10:35:26 +08:00
|
|
|
<head>
|
2017-12-31 01:47:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2025-10-29 14:38:09 +01:00
|
|
|
<title>{{if .Title}}{{.Title}} - {{end}}{{.PageTitleCommon}}</title>
|
2023-03-04 10:12:02 +08:00
|
|
|
{{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}}">
|
2026-01-03 11:43:04 +08:00
|
|
|
<meta name="referrer" content="same-origin">{{/* required by: 1. "redirect_to" cookie; 2. cross-origin protection */}}
|
2017-01-25 23:15:25 +08:00
|
|
|
{{if .GoGetImport}}
|
2022-03-29 11:21:30 +08:00
|
|
|
<meta name="go-import" content="{{.GoGetImport}} git {{.RepoCloneLink.HTTPS}}">
|
2017-01-25 23:15:25 +08:00
|
|
|
<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">
|
2017-01-25 23:15:25 +08:00
|
|
|
{{end}}
|
2022-05-23 17:54:48 +02:00
|
|
|
<link rel="icon" href="{{AssetUrlPrefix}}/img/favicon.svg" type="image/svg+xml">
|
2021-05-08 16:27:25 +02:00
|
|
|
<link rel="alternate icon" href="{{AssetUrlPrefix}}/img/favicon.png" type="image/png">
|
2023-09-01 18:59:24 +02:00
|
|
|
{{template "base/head_opengraph" .}}
|
2023-05-29 00:33:17 +02:00
|
|
|
{{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>
|
2025-12-25 11:33:34 +01:00
|
|
|
<body hx-swap="outerHTML" hx-ext="morph" hx-push-url="false">
|
2018-01-02 11:32:41 +01:00
|
|
|
{{template "custom/body_outer_pre" .}}
|
|
|
|
|
|
2015-03-07 15:12:13 -05:00
|
|
|
<div class="full height">
|
2023-08-08 09:22:47 +08:00
|
|
|
<noscript>{{ctx.Locale.Tr "enable_javascript"}}</noscript>
|
2015-08-10 16:38:21 +02:00
|
|
|
|
2018-01-02 11:32:41 +01:00
|
|
|
{{template "custom/body_inner_pre" .}}
|
|
|
|
|
|
2015-07-08 01:09:03 +08:00
|
|
|
{{if not .PageIsInstall}}
|
2023-06-08 00:21:57 +02:00
|
|
|
{{template "base/head_navbar" .}}
|
2015-07-08 01:09:03 +08:00
|
|
|
{{end}}
|
2021-10-13 02:11:35 +08:00
|
|
|
|
|
|
|
|
{{if false}}
|
|
|
|
|
{{/* to make html structure "likely" complete to prevent IDE warnings */}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
2021-10-13 02:11:35 +08:00
|
|
|
{{end}}
|