summaryrefslogtreecommitdiffstats
path: root/templates/base/footer.tmpl
blob: d4b1eb8852d09767027dfe6b17b4386e7d878a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
	</div>
	<footer>
		<div class="ui container">
			<div class="ui left">
				© 2015 Gogs {{.i18n.Tr "version"}}: {{AppVer}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong>
			</div>
			<div class="ui right links">
				{{if .ShowFooterBranding}}
				<a target="_blank" href="https://github.com/gogits/gogs"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
				<a target="_blank" href="https://twitter.com/gogitservice"><i class="fa fa-twitter"></i><span class="sr-only">Twitter</span></a>
				<a target="_blank" href="http://weibo.com/gogschina"><i class="fa fa-weibo"></i><span class="sr-only">Sina Weibo</span></a>
				{{end}}
				<div class="ui language bottom pointing 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 target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a>
				<span class="version">{{GoVer}}</span>
			</div>
		</div>
	</footer>
</body>

	<!-- Third-party libraries -->
	{{if .RequireHighlightJS}}
	<link rel="stylesheet" href="{{AppSubUrl}}/css/highlight-8.7/default.css">
	<script src="{{AppSubUrl}}/js/libs/highlight-8.7.pack.js"></script>
	{{end}}
	{{if .RequireMinicolors}}
	<link rel="stylesheet" href="{{AppSubUrl}}/css/jquery.minicolors-2.1.12.css">
	<script src="{{AppSubUrl}}/js/libs/jquery.minicolors-2.1.12.min.js"></script>
	{{end}}
	{{if .RequireDatetimepicker}}
	<link rel="stylesheet" href="{{AppSubUrl}}/css/jquery.datetimepicker-2.4.5.css">
	<script src="{{AppSubUrl}}/js/libs/jquery.datetimepicker-2.4.5.js"></script>
	{{end}}
	{{if .RequireDropzone}}
	<link rel="stylesheet" href="{{AppSubUrl}}/css/dropzone-4.0.1.css">
	<script src="{{AppSubUrl}}/js/libs/dropzone-4.0.1.js"></script>
	{{end}}
	<script src="{{AppSubUrl}}/js/libs/emojify-1.1.0.min.js"></script>
	
</html>