2015-12-08 04:00:52 +05:30
|
|
|
{{/*
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
|
|
*/}}
|
2018-01-02 16:02:41 +05:30
|
|
|
|
|
|
|
{{template "custom/body_inner_post" .}}
|
|
|
|
|
2015-03-08 01:42:13 +05:30
|
|
|
</div>
|
2018-01-02 16:02:41 +05:30
|
|
|
|
|
|
|
{{template "custom/body_outer_post" .}}
|
|
|
|
|
2015-08-09 20:15:38 +05:30
|
|
|
<footer>
|
|
|
|
<div class="ui container">
|
2015-03-08 01:42:13 +05:30
|
|
|
<div class="ui left">
|
2017-02-24 13:51:45 +05:30
|
|
|
© 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-08 01:42:13 +05:30
|
|
|
</div>
|
|
|
|
<div class="ui right links">
|
2015-03-23 19:49:19 +05:30
|
|
|
{{if .ShowFooterBranding}}
|
2016-12-02 06:42:16 +05:30
|
|
|
<a target="_blank" rel="noopener" href="https://github.com/go-gitea/gitea"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
|
2015-03-23 19:49:19 +05:30
|
|
|
{{end}}
|
2016-04-25 23:10:23 +05:30
|
|
|
<div class="ui language bottom floating slide up dropdown link item">
|
2015-12-08 04:00:52 +05:30
|
|
|
<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 07:01:32 +05:30
|
|
|
<a href="{{AppSubUrl}}/vendor/librejs.html" data-jslicense="1">JavaScript licenses</a>
|
2018-02-14 10:16:00 +05:30
|
|
|
{{if .EnableSwaggerEndpoint}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
|
2016-12-02 06:42:16 +05:30
|
|
|
<a target="_blank" rel="noopener" href="https://gitea.io">{{.i18n.Tr "website"}}</a>
|
2015-11-19 03:49:36 +05:30
|
|
|
{{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
|
2015-03-08 01:42:13 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2017-08-23 20:28:05 +05:30
|
|
|
<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 20:45:25 +05:30
|
|
|
{{if .RequireSimpleMDE}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<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 20:45:25 +05:30
|
|
|
<script>
|
2017-08-23 20:28:05 +05:30
|
|
|
CodeMirror.modeURL = "{{AppSubUrl}}/vendor/plugins/codemirror/mode/%N/%N.js";
|
2017-01-25 20:45:25 +05:30
|
|
|
</script>
|
|
|
|
{{end}}
|
|
|
|
{{if .RequireGitGraph}}
|
|
|
|
<!-- graph -->
|
2017-08-23 20:28:05 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/gitgraph/gitgraph.js"></script>
|
2017-01-25 20:45:25 +05:30
|
|
|
<script src="{{AppSubUrl}}/js/draw.js"></script>
|
|
|
|
{{end}}
|
|
|
|
|
2015-12-08 04:00:52 +05:30
|
|
|
<!-- Third-party libraries -->
|
|
|
|
{{if .RequireHighlightJS}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/highlight/highlight.pack.js"></script>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
{{if .RequireMinicolors}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js"></script>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
{{if .RequireDatetimepicker}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.js"></script>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
{{if .RequireDropzone}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/dropzone/dropzone.js"></script>
|
2017-12-11 11:33:04 +05:30
|
|
|
{{end}}
|
2018-05-19 19:42:37 +05:30
|
|
|
{{if .RequireU2F}}
|
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/u2f/index.js"></script>
|
|
|
|
{{end}}
|
2017-12-11 11:33:04 +05:30
|
|
|
{{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 13:39:35 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
{{end}}
|
2017-08-23 20:28:05 +05:30
|
|
|
<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 07:01:34 +05:30
|
|
|
|
|
|
|
<!-- JavaScript -->
|
2017-09-16 14:34:27 +05:30
|
|
|
<script src="{{AppSubUrl}}/vendor/plugins/semantic/semantic.min.js"></script>
|
|
|
|
<script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script>
|
2017-12-03 05:56:06 +05:30
|
|
|
{{template "custom/footer" .}}
|
2017-01-25 20:45:25 +05:30
|
|
|
</body>
|
2017-09-16 14:34:27 +05:30
|
|
|
</html>
|