2014-04-10 14:20:58 -04:00
|
|
|
<!DOCTYPE html>
|
2022-06-27 22:58:46 +02:00
|
|
|
<html lang="{{.locale.Lang}}" class="theme-{{.SignedUser.Theme}}">
|
2021-10-15 10:35:26 +08:00
|
|
|
<head>
|
2017-01-25 23:15:25 +08:00
|
|
|
<meta charset="utf-8">
|
2017-12-31 01:47:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-10-21 15:37:43 +08:00
|
|
|
<title>{{if .Title}}{{.Title | RenderEmojiPlain}} - {{end}} {{if .Repository.Name}}{{.Repository.Name}} - {{end}}{{AppName}}</title>
|
2022-05-11 03:05:50 +02:00
|
|
|
<link rel="manifest" href="data:{{.ManifestData}}">
|
2017-01-25 23:15:25 +08:00
|
|
|
<meta name="theme-color" content="{{ThemeColorMetaTag}}">
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta name="default-theme" content="{{DefaultTheme}}">
|
|
|
|
|
<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}}">
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta name="referrer" content="no-referrer">
|
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}}
|
|
|
|
|
{{if .FeedURL}}
|
|
|
|
|
<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">
|
|
|
|
|
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/index.css?v={{MD5 AppVer}}">
|
2022-03-30 13:52:24 +08:00
|
|
|
{{template "base/head_script" .}}
|
2017-09-19 01:03:01 +02:00
|
|
|
<noscript>
|
|
|
|
|
<style>
|
|
|
|
|
.dropdown:hover > .menu { display: block; }
|
|
|
|
|
.ui.secondary.menu .dropdown.item > .menu { margin-top: 0; }
|
|
|
|
|
</style>
|
|
|
|
|
</noscript>
|
2017-02-11 07:57:33 -05:00
|
|
|
{{if .PageIsUserProfile}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:title" content="{{.Owner.DisplayName}}">
|
|
|
|
|
<meta property="og:type" content="profile">
|
|
|
|
|
<meta property="og:image" content="{{.Owner.AvatarLink}}">
|
|
|
|
|
<meta property="og:url" content="{{.Owner.HTMLURL}}">
|
2019-10-23 12:54:13 -05:00
|
|
|
{{if .Owner.Description}}
|
|
|
|
|
<meta property="og:description" content="{{.Owner.Description}}">
|
|
|
|
|
{{end}}
|
2017-02-11 07:57:33 -05:00
|
|
|
{{else if .Repository}}
|
2019-10-23 12:54:13 -05:00
|
|
|
{{if .Issue}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:title" content="{{.Issue.Title}}">
|
|
|
|
|
<meta property="og:url" content="{{.Issue.HTMLURL}}">
|
2019-10-23 12:54:13 -05:00
|
|
|
{{if .Issue.Content}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:description" content="{{.Issue.Content}}">
|
2019-10-23 12:54:13 -05:00
|
|
|
{{end}}
|
|
|
|
|
{{else}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:title" content="{{.Repository.Name}}">
|
|
|
|
|
<meta property="og:url" content="{{.Repository.HTMLURL}}">
|
2019-10-23 12:54:13 -05:00
|
|
|
{{if .Repository.Description}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:description" content="{{.Repository.Description}}">
|
2019-10-23 12:54:13 -05:00
|
|
|
{{end}}
|
|
|
|
|
{{end}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:type" content="object">
|
2020-08-24 21:46:56 +02:00
|
|
|
{{if .Repository.AvatarLink}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:image" content="{{.Repository.AvatarLink}}">
|
2020-08-24 21:46:56 +02:00
|
|
|
{{else}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:image" content="{{.Repository.Owner.AvatarLink}}">
|
2020-08-24 21:46:56 +02:00
|
|
|
{{end}}
|
2017-02-11 07:57:33 -05:00
|
|
|
{{else}}
|
|
|
|
|
<meta property="og:title" content="{{AppName}}">
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:type" content="website">
|
|
|
|
|
<meta property="og:image" content="{{AssetUrlPrefix}}/img/logo.png">
|
|
|
|
|
<meta property="og:url" content="{{AppUrl}}">
|
2017-04-01 03:03:01 +02:00
|
|
|
<meta property="og:description" content="{{MetaDescription}}">
|
2017-02-11 07:57:33 -05:00
|
|
|
{{end}}
|
2022-05-11 03:05:50 +02:00
|
|
|
<meta property="og:site_name" content="{{AppName}}">
|
2019-01-09 18:22:57 +01:00
|
|
|
{{if .IsSigned }}
|
|
|
|
|
{{ if ne .SignedUser.Theme "gitea" }}
|
2021-11-16 18:18:25 +00:00
|
|
|
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/theme-{{.SignedUser.Theme | PathEscape}}.css?v={{MD5 AppVer}}">
|
2019-01-09 18:22:57 +01:00
|
|
|
{{end}}
|
|
|
|
|
{{else if ne DefaultTheme "gitea"}}
|
2021-11-16 18:18:25 +00:00
|
|
|
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/theme-{{DefaultTheme | PathEscape}}.css?v={{MD5 AppVer}}">
|
2018-07-05 17:25:04 -04:00
|
|
|
{{end}}
|
2017-12-02 19:26:06 -05:00
|
|
|
{{template "custom/header" .}}
|
2015-03-07 15:12:13 -05:00
|
|
|
</head>
|
|
|
|
|
<body>
|
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">
|
2022-06-27 22:58:46 +02:00
|
|
|
<noscript>{{.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}}
|
2022-04-26 20:31:58 +00:00
|
|
|
<div class="ui top secondary stackable main menu following bar light no-vertical-tabs">
|
2018-09-07 04:59:06 +02:00
|
|
|
{{template "base/head_navbar" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div><!-- end bar -->
|
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}}
|