 535445c32e
			
		
	
	
	535445c32e
	
	
	
		
			
			* Get rid of autolink * autolink in markdown * Replace email addresses with mailto links * better handling of links * Remove autolink.js from footer * Refactor entire html.go * fix some bugs * Make tests green, move what we can to html_internal_test, various other changes to processor logic * Make markdown tests work again This is just a description to allow me to force push in order to restart the drone build. * Fix failing markdown tests in routers/api/v1/misc * Add license headers, log errors, future-proof <body> * fix formatting
		
			
				
	
	
		
			134 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
	
		
			4.7 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| {{/*
 | |
| <html>
 | |
| <body>
 | |
| 	<div>
 | |
| */}}
 | |
| 
 | |
| 	{{template "custom/body_inner_post" .}}
 | |
| 
 | |
| 	</div>
 | |
| 
 | |
| 	{{template "custom/body_outer_post" .}}
 | |
| 
 | |
| 	<footer>
 | |
| 		<div class="ui container">
 | |
| 			<div class="ui left">
 | |
| 				© 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}}
 | |
| 			</div>
 | |
| 			<div class="ui right links">
 | |
| 				{{if .ShowFooterBranding}}
 | |
| 					<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>
 | |
| 				{{end}}
 | |
| 				<div class="ui language bottom floating slide up dropdown link item">
 | |
| 					<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>
 | |
| 				<a href="{{AppSubUrl}}/vendor/librejs.html" data-jslicense="1">JavaScript licenses</a>
 | |
| 				{{if .EnableSwaggerEndpoint}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
 | |
| 				<a target="_blank" rel="noopener" href="https://gitea.io">{{.i18n.Tr "website"}}</a>
 | |
| 				{{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</footer>
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/jquery/jquery.min.js"></script>
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/jquery.areyousure/jquery.are-you-sure.js"></script>
 | |
| {{if .RequireSimpleMDE}}
 | |
| 	<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>
 | |
| 	<script>
 | |
| 		CodeMirror.modeURL =  "{{AppSubUrl}}/vendor/plugins/codemirror/mode/%N/%N.js";
 | |
| 	</script>
 | |
| {{end}}
 | |
| {{if .RequireGitGraph}}
 | |
| 	<!-- graph -->
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/gitgraph/gitgraph.js"></script>
 | |
| 	<script src="{{AppSubUrl}}/js/draw.js"></script>
 | |
| {{end}}
 | |
| 
 | |
| <!-- Third-party libraries -->
 | |
| {{if .RequireHighlightJS}}
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/highlight/highlight.pack.js"></script>
 | |
| {{end}}
 | |
| {{if .RequireMinicolors}}
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/jquery.minicolors/jquery.minicolors.min.js"></script>
 | |
| {{end}}
 | |
| {{if .RequireDatetimepicker}}
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/jquery.datetimepicker/jquery.datetimepicker.js"></script>
 | |
| {{end}}
 | |
| {{if .RequireDropzone}}
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/dropzone/dropzone.js"></script>
 | |
| {{end}}
 | |
| {{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}}
 | |
| 	<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>
 | |
| {{end}}
 | |
| 	<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>
 | |
| 
 | |
| 	<!-- JavaScript -->
 | |
| 	<script src="{{AppSubUrl}}/vendor/plugins/semantic/semantic.min.js"></script>
 | |
| 	<script src="{{AppSubUrl}}/js/index.js?v={{MD5 AppVer}}"></script>
 | |
| {{template "custom/footer" .}}
 | |
| </body>
 | |
| </html>
 |