2014-04-10 12:20:58 -06:00
|
|
|
<!DOCTYPE html>
|
2020-05-14 10:06:01 -06:00
|
|
|
<html lang="{{.Language}}" class="theme-{{.SignedUser.Theme}}">
|
2015-03-07 13:12:13 -07:00
|
|
|
<head data-suburl="{{AppSubUrl}}">
|
2017-01-25 08:15:25 -07:00
|
|
|
<meta charset="utf-8">
|
2017-12-30 17:47:52 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-01-25 08:15:25 -07:00
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
2020-04-28 12:05:39 -06:00
|
|
|
<title>{{if .Title}}{{.Title | RenderEmojiPlain}} - {{end}} {{if .Repository.Name}}{{.Repository.Name}} - {{end}}{{AppName}} </title>
|
2019-03-19 15:02:18 -06:00
|
|
|
<link rel="manifest" href="{{AppSubUrl}}/manifest.json" crossorigin="use-credentials">
|
2019-11-21 13:06:23 -07:00
|
|
|
{{if UseServiceWorker}}
|
2018-11-27 08:18:26 -07:00
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
2019-11-21 13:06:23 -07:00
|
|
|
navigator.serviceWorker.register('{{AppSubUrl}}/serviceworker.js').then(function(registration) {
|
|
|
|
// Registration was successful
|
|
|
|
console.info('ServiceWorker registration successful with scope: ', registration.scope);
|
|
|
|
}, function(err) {
|
|
|
|
// registration failed :(
|
|
|
|
console.info('ServiceWorker registration failed: ', err);
|
|
|
|
});
|
2018-11-27 08:18:26 -07:00
|
|
|
}
|
|
|
|
</script>
|
2019-11-21 13:06:23 -07:00
|
|
|
{{else}}
|
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
navigator.serviceWorker.getRegistrations().then(function(registrations) {
|
|
|
|
registrations.forEach(function(registration) {
|
|
|
|
registration.unregister();
|
|
|
|
console.info('ServiceWorker unregistered');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{{end}}
|
2017-01-25 08:15:25 -07:00
|
|
|
<meta name="theme-color" content="{{ThemeColorMetaTag}}">
|
2017-03-31 19:03:01 -06: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}}" />
|
|
|
|
<meta name="keywords" content="{{MetaKeywords}}">
|
2015-07-20 21:19:56 -06:00
|
|
|
<meta name="referrer" content="no-referrer" />
|
2015-03-07 13:12:13 -07:00
|
|
|
<meta name="_csrf" content="{{.CsrfToken}}" />
|
2017-05-08 18:31:30 -06:00
|
|
|
{{if .IsSigned}}
|
|
|
|
<meta name="_uid" content="{{.SignedUser.ID}}" />
|
|
|
|
{{end}}
|
2017-05-18 08:28:29 -06:00
|
|
|
{{if .ContextUser}}
|
|
|
|
<meta name="_context_uid" content="{{.ContextUser.ID}}" />
|
|
|
|
{{end}}
|
2017-08-16 19:31:34 -06:00
|
|
|
{{if .SearchLimit}}
|
|
|
|
<meta name="_search_limit" content="{{.SearchLimit}}" />
|
|
|
|
{{end}}
|
2017-01-25 08:15:25 -07:00
|
|
|
{{if .GoGetImport}}
|
|
|
|
<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">
|
|
|
|
<meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}">
|
|
|
|
{{end}}
|
2017-08-23 08:58:05 -06:00
|
|
|
<script>
|
|
|
|
{{SafeJS `/*
|
|
|
|
@licstart The following is the entire license notice for the
|
|
|
|
JavaScript code in this page.
|
|
|
|
|
|
|
|
Copyright (c) 2016 The Gitea Authors
|
|
|
|
Copyright (c) 2015 The Gogs Authors
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
---
|
|
|
|
Licensing information for additional javascript libraries can be found at:
|
2019-10-22 06:11:01 -06:00
|
|
|
{{StaticUrlPrefix}}/vendor/librejs.html
|
2017-08-23 08:58:05 -06:00
|
|
|
|
|
|
|
@licend The above is the entire license notice
|
|
|
|
for the JavaScript code in this page.
|
|
|
|
*/`}}
|
|
|
|
</script>
|
2020-01-28 14:57:20 -07:00
|
|
|
<script>
|
|
|
|
window.config = {
|
2020-02-11 18:53:18 -07:00
|
|
|
AppSubUrl: '{{AppSubUrl}}',
|
|
|
|
StaticUrlPrefix: '{{StaticUrlPrefix}}',
|
2020-03-07 14:06:15 -07:00
|
|
|
csrf: '{{.CsrfToken}}',
|
2020-01-28 14:57:20 -07:00
|
|
|
HighlightJS: {{if .RequireHighlightJS}}true{{else}}false{{end}},
|
|
|
|
Minicolors: {{if .RequireMinicolors}}true{{else}}false{{end}},
|
|
|
|
SimpleMDE: {{if .RequireSimpleMDE}}true{{else}}false{{end}},
|
|
|
|
Tribute: {{if .RequireTribute}}true{{else}}false{{end}},
|
|
|
|
U2F: {{if .RequireU2F}}true{{else}}false{{end}},
|
2020-02-23 14:34:28 -07:00
|
|
|
Heatmap: {{if .EnableHeatmap}}true{{else}}false{{end}},
|
|
|
|
heatmapUser: {{if .HeatmapUser}}'{{.HeatmapUser}}'{{else}}null{{end}},
|
2020-04-23 21:57:38 -06:00
|
|
|
NotificationSettings: {
|
|
|
|
MinTimeout: {{NotificationSettings.MinTimeout}},
|
|
|
|
TimeoutStep: {{NotificationSettings.TimeoutStep}},
|
|
|
|
MaxTimeout: {{NotificationSettings.MaxTimeout}},
|
2020-05-07 15:49:00 -06:00
|
|
|
EventSourceUpdateTime: {{NotificationSettings.EventSourceUpdateTime}},
|
2020-04-23 21:57:38 -06:00
|
|
|
},
|
2020-04-28 12:05:39 -06:00
|
|
|
{{if .RequireTribute}}
|
|
|
|
tributeValues: [
|
|
|
|
{{ range .Assignees }}
|
|
|
|
{key: '{{.Name}} {{.FullName}}', value: '{{.Name}}',
|
|
|
|
name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'},
|
|
|
|
{{ end }}
|
|
|
|
],
|
|
|
|
{{end}}
|
2020-01-28 14:57:20 -07:00
|
|
|
};
|
|
|
|
</script>
|
2020-01-26 22:10:57 -07:00
|
|
|
<link rel="shortcut icon" href="{{StaticUrlPrefix}}/img/favicon.png">
|
2019-10-22 06:11:01 -06:00
|
|
|
<link rel="mask-icon" href="{{StaticUrlPrefix}}/img/gitea-safari.svg" color="#609926">
|
2020-02-26 20:40:14 -07:00
|
|
|
<link rel="fluid-icon" href="{{StaticUrlPrefix}}/img/gitea-lg.png" title="{{AppName}}">
|
2020-01-25 11:58:26 -07:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/assets/font-awesome/css/font-awesome.min.css">
|
2020-01-25 14:18:31 -07:00
|
|
|
<link rel="preload" as="font" href="{{StaticUrlPrefix}}/fomantic/themes/default/assets/fonts/icons.woff2" type="font/woff2" crossorigin="anonymous">
|
|
|
|
<link rel="preload" as="font" href="{{StaticUrlPrefix}}/fomantic/themes/default/assets/fonts/outline-icons.woff2" type="font/woff2" crossorigin="anonymous">
|
2017-01-25 08:15:25 -07:00
|
|
|
{{if .RequireSimpleMDE}}
|
2019-10-22 06:11:01 -06:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/plugins/simplemde/simplemde.min.css">
|
2017-01-25 08:15:25 -07:00
|
|
|
{{end}}
|
2015-11-25 18:10:25 -07:00
|
|
|
|
2017-12-10 23:03:04 -07:00
|
|
|
{{if .RequireTribute}}
|
2019-10-22 06:11:01 -06:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/plugins/tribute/tribute.css">
|
2017-12-10 23:03:04 -07:00
|
|
|
{{end}}
|
2020-01-20 22:17:58 -07:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/fomantic/semantic.min.css?v={{MD5 AppVer}}">
|
2019-10-22 06:11:01 -06:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/css/index.css?v={{MD5 AppVer}}">
|
2017-09-18 17:03:01 -06:00
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
.dropdown:hover > .menu { display: block; }
|
|
|
|
.ui.secondary.menu .dropdown.item > .menu { margin-top: 0; }
|
|
|
|
</style>
|
|
|
|
</noscript>
|
2017-01-25 08:15:25 -07:00
|
|
|
{{if .RequireMinicolors}}
|
2019-10-22 06:11:01 -06:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/vendor/plugins/jquery.minicolors/jquery.minicolors.css">
|
2017-01-25 08:15:25 -07:00
|
|
|
{{end}}
|
2017-01-29 22:57:47 -07:00
|
|
|
<style class="list-search-style"></style>
|
2017-02-11 05:57:33 -07:00
|
|
|
{{if .PageIsUserProfile}}
|
|
|
|
<meta property="og:title" content="{{.Owner.Name}}" />
|
|
|
|
<meta property="og:type" content="profile" />
|
|
|
|
<meta property="og:image" content="{{.Owner.AvatarLink}}" />
|
|
|
|
<meta property="og:url" content="{{.Owner.HTMLURL}}" />
|
2019-10-23 11:54:13 -06:00
|
|
|
{{if .Owner.Description}}
|
|
|
|
<meta property="og:description" content="{{.Owner.Description}}">
|
|
|
|
{{end}}
|
2017-02-11 05:57:33 -07:00
|
|
|
{{else if .Repository}}
|
2019-10-23 11:54:13 -06:00
|
|
|
{{if .Issue}}
|
|
|
|
<meta property="og:title" content="{{.Issue.Title}}" />
|
|
|
|
<meta property="og:url" content="{{.Issue.HTMLURL}}" />
|
|
|
|
{{if .Issue.Content}}
|
|
|
|
<meta property="og:description" content="{{.Issue.Content}}" />
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
<meta property="og:title" content="{{.Repository.Name}}" />
|
|
|
|
<meta property="og:url" content="{{.Repository.HTMLURL}}" />
|
|
|
|
{{if .Repository.Description}}
|
|
|
|
<meta property="og:description" content="{{.Repository.Description}}" />
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2017-02-11 05:57:33 -07:00
|
|
|
<meta property="og:type" content="object" />
|
|
|
|
<meta property="og:image" content="{{.Repository.Owner.AvatarLink}}" />
|
|
|
|
{{else}}
|
|
|
|
<meta property="og:title" content="{{AppName}}">
|
|
|
|
<meta property="og:type" content="website" />
|
2020-02-28 04:30:23 -07:00
|
|
|
<meta property="og:image" content="{{StaticUrlPrefix}}/img/gitea-lg.png" />
|
2017-02-11 05:57:33 -07:00
|
|
|
<meta property="og:url" content="{{AppUrl}}" />
|
2017-03-31 19:03:01 -06:00
|
|
|
<meta property="og:description" content="{{MetaDescription}}">
|
2017-02-11 05:57:33 -07:00
|
|
|
{{end}}
|
2019-10-23 11:54:13 -06:00
|
|
|
<meta property="og:site_name" content="{{AppName}}" />
|
2019-01-09 10:22:57 -07:00
|
|
|
{{if .IsSigned }}
|
|
|
|
{{ if ne .SignedUser.Theme "gitea" }}
|
2019-12-18 20:35:03 -07:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/css/theme-{{.SignedUser.Theme}}.css?v={{MD5 AppVer}}">
|
2019-01-09 10:22:57 -07:00
|
|
|
{{end}}
|
|
|
|
{{else if ne DefaultTheme "gitea"}}
|
2019-12-18 20:35:03 -07:00
|
|
|
<link rel="stylesheet" href="{{StaticUrlPrefix}}/css/theme-{{DefaultTheme}}.css?v={{MD5 AppVer}}">
|
2018-07-05 15:25:04 -06:00
|
|
|
{{end}}
|
2017-12-02 17:26:06 -07:00
|
|
|
{{template "custom/header" .}}
|
2015-03-07 13:12:13 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-01-02 03:32:41 -07:00
|
|
|
{{template "custom/body_outer_pre" .}}
|
|
|
|
|
2015-03-07 13:12:13 -07:00
|
|
|
<div class="full height">
|
2017-09-18 17:03:01 -06:00
|
|
|
<noscript>{{.i18n.Tr "enable_javascript"}}</noscript>
|
2015-08-10 08:38:21 -06:00
|
|
|
|
2018-01-02 03:32:41 -07:00
|
|
|
{{template "custom/body_inner_pre" .}}
|
|
|
|
|
2015-07-07 11:09:03 -06:00
|
|
|
{{if not .PageIsInstall}}
|
2017-12-30 17:47:52 -07:00
|
|
|
<div class="ui top secondary stackable main menu following bar light">
|
2018-09-06 20:59:06 -06:00
|
|
|
{{template "base/head_navbar" .}}
|
2015-12-07 15:30:52 -07:00
|
|
|
</div><!-- end bar -->
|
2015-07-07 11:09:03 -06:00
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{/*
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
*/}}
|