2015-12-07 23:30:52 +01:00
|
|
|
{{/*
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
|
|
*/}}
|
2018-01-02 11:32:41 +01:00
|
|
|
|
|
|
|
{{template "custom/body_inner_post" .}}
|
|
|
|
|
2015-03-07 21:12:13 +01:00
|
|
|
</div>
|
2018-01-02 11:32:41 +01:00
|
|
|
|
|
|
|
{{template "custom/body_outer_post" .}}
|
|
|
|
|
2015-08-09 16:45:38 +02:00
|
|
|
<footer>
|
|
|
|
<div class="ui container">
|
2015-03-07 21:12:13 +01:00
|
|
|
<div class="ui left">
|
2017-02-24 09:21:45 +01:00
|
|
|
© Gitea {{if (or .ShowFooterVersion .PageIsAdmin)}}{{.i18n.Tr "version"}}: {{AppVer}}{{end}} {{if ShowFooterTemplateLoadTime}}{{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong>{{end}}
|
2015-03-07 21:12:13 +01:00
|
|
|
</div>
|
|
|
|
<div class="ui right links">
|
2015-03-23 15:19:19 +01:00
|
|
|
{{if .ShowFooterBranding}}
|
2018-07-04 01:52:36 +02:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
|
2015-03-23 15:19:19 +01:00
|
|
|
{{end}}
|
2016-04-25 19:40:23 +02:00
|
|
|
<div class="ui language bottom floating slide up dropdown link item">
|
2015-12-07 23:30:52 +01:00
|
|
|
<i class="world icon"></i>
|
|
|
|
<div class="text">{{.LangName}}</div>
|
|
|
|
<div class="menu">
|
|
|
|
{{range .AllLangs}}
|
|
|
|
<a class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-19 02:31:32 +01:00
|
|
|
<a href="{{AppSubUrl}}/vendor/librejs.html" data-jslicense="1">JavaScript licenses</a>
|
2018-07-28 02:19:01 +02:00
|
|
|
{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
|
2018-07-04 01:52:36 +02:00
|
|
|
<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.i18n.Tr "website"}}</a>
|
2015-11-18 23:19:36 +01:00
|
|
|
{{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
|
2015-03-07 21:12:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery/jquery.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.areyousure/jquery.are-you-sure.js"></script>
|
2017-01-25 16:15:25 +01:00
|
|
|
{{if .RequireSimpleMDE}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/simplemde/simplemde.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/codemirror/addon/mode/loadmode.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/codemirror/mode/meta.js"></script>
|
2017-01-25 16:15:25 +01:00
|
|
|
<script>
|
2017-08-23 16:58:05 +02:00
|
|
|
CodeMirror.modeURL = "{{AppSubUrl}}/vendor/plugins/codemirror/mode/%N/%N.js";
|
2017-01-25 16:15:25 +01:00
|
|
|
</script>
|
|
|
|
{{end}}
|
|
|
|
{{if .RequireGitGraph}}
|
|
|
|
<!-- graph -->
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/gitgraph/gitgraph.js"></script>
|
2017-01-25 16:15:25 +01:00
|
|
|
<script src="{{AppSubUrl}}/js/draw.js"></script>
|
|
|
|
{{end}}
|
|
|
|
|
2015-12-07 23:30:52 +01:00
|
|
|
<!-- Third-party libraries -->
|
|
|
|
{{if .RequireHighlightJS}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/highlight/highlight.pack.js"></script>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
{{if .RequireMinicolors}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js"></script>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
{{if .RequireDatetimepicker}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.js"></script>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
{{if .RequireDropzone}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/dropzone/dropzone.js"></script>
|
2017-12-11 07:03:04 +01:00
|
|
|
{{end}}
|
2018-05-19 16:12:37 +02:00
|
|
|
{{if .RequireU2F}}
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/u2f/index.js"></script>
|
|
|
|
{{end}}
|
2018-07-05 06:13:05 +02:00
|
|
|
{{if .EnableCaptcha}}
|
|
|
|
{{if eq .CaptchaType "recaptcha"}}
|
|
|
|
<script src="https://www.google.com/recaptcha/api.js" async></script>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2017-12-11 07:03:04 +01:00
|
|
|
{{if .RequireTribute}}
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/tribute/tribute.min.js"></script>
|
|
|
|
|
|
|
|
{{if .Assignees}}
|
|
|
|
<script>
|
|
|
|
var issuesTribute = new Tribute({
|
|
|
|
values: [
|
|
|
|
{{ range .Assignees }}
|
|
|
|
{key: '{{.Name}} {{.FullName}}', value: '{{.Name}}',
|
|
|
|
name: '{{.Name}}', fullname: '{{.FullName}}', avatar: '{{.RelAvatarLink}}'},
|
|
|
|
{{ end }}
|
|
|
|
],
|
|
|
|
noMatchTemplate: function () { return null },
|
|
|
|
menuItemTemplate: function (item) {
|
|
|
|
var user = item.original;
|
|
|
|
var itemStr = '<img src="' + user.avatar + '"/><span class="name">' + user.name + '</span>';
|
|
|
|
if (user.fullname && user.fullname != '') {
|
|
|
|
itemStr += '<span class="fullname">' + user.fullname + '</span>';
|
|
|
|
}
|
|
|
|
return itemStr;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
issuesTribute.attach(document.getElementById('content'))
|
|
|
|
</script>
|
|
|
|
{{end}}
|
2018-02-03 09:09:35 +01:00
|
|
|
<script>
|
|
|
|
var emojiTribute = new Tribute({
|
|
|
|
collection: [{
|
|
|
|
trigger: ':',
|
|
|
|
requireLeadingSpace: true,
|
|
|
|
values: function (text, cb) {
|
|
|
|
var array = emojify.emojiNames;
|
|
|
|
var data = [];
|
|
|
|
for(var j=0; j<array.length; j++) {
|
|
|
|
if(array[j].indexOf(text) !== -1) {
|
|
|
|
data.push(array[j]);
|
|
|
|
if(data.length > 5) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cb(data);
|
|
|
|
},
|
|
|
|
lookup: function (item) {
|
|
|
|
return item;
|
|
|
|
},
|
|
|
|
selectTemplate: function (item) {
|
|
|
|
if (typeof item === 'undefinied') return null;
|
|
|
|
return ':' + item.original + ':';
|
|
|
|
},
|
|
|
|
menuItemTemplate: function (item) {
|
|
|
|
return '<img class="emoji" src="{{AppSubUrl}}/vendor/plugins/emojify/images/' + item.original + '.png"/>' + item.original;
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
emojiTribute.attach(document.getElementById('content'))
|
|
|
|
</script>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
2017-08-23 16:58:05 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/emojify/emojify.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/clipboard/clipboard.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/vue/vue.min.js"></script>
|
2017-08-17 03:31:34 +02:00
|
|
|
|
|
|
|
<!-- JavaScript -->
|
2017-09-16 11:04:27 +02:00
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/semantic/semantic.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script>
|
2017-12-03 01:26:06 +01:00
|
|
|
{{template "custom/footer" .}}
|
2017-01-25 16:15:25 +01:00
|
|
|
</body>
|
2017-09-16 11:04:27 +02:00
|
|
|
</html>
|