summaryrefslogtreecommitdiffstats
path: root/templates/base/head.tmpl
blob: d0577544109108ea5e4e439b7b62b34d4289f49a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head data-suburl="{{AppSubUrl}}">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
	<meta name="author" content="Gogs - Go Git Service" />
	<meta name="description" content="Gogs(Go Git Service) a painless self-hosted Git Service written in Go" />
	<meta name="keywords" content="go, git, self-hosted, gogs">
	<meta name="_csrf" content="{{.CsrfToken}}" />
	{{if .GoGetImport}}
	<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">
	{{end}}

	<link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" />

	{{if CdnMode}}
	<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
	<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
	{{else}}
	<script src="{{AppSubUrl}}/js/jquery-1.11.3.min.js"></script>
	<link rel="stylesheet" href="{{AppSubUrl}}/css/font-awesome.min.css">
	{{end}}

	<!-- Stylesheet -->
	<link rel="stylesheet" href="{{AppSubUrl}}/css/semantic.min.css?v={{AppVer}}">
	<link rel="stylesheet" href="{{AppSubUrl}}/css/gogs.min.css?v={{AppVer}}">

	<!-- JavaScript -->
	<script src="{{AppSubUrl}}/js/semantic.min.js?v={{AppVer}}"></script>
	<script src="{{AppSubUrl}}/js/gogs.js?v={{AppVer}}"></script>

	<title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title>
</head>
<body>
	<div class="full height">
		<noscript>Please enable JavaScript in your browser!</noscript>
		{{if not .PageIsInstall}}
		<div class="following bar light">
		  <div class="ui page grid">
		    <div class="column">
		      <div class="ui right floated secondary menu">
		      	{{if .ShowRegistrationButton}}
		      	<a class="view-ui item {{if .PageIsSignUp}}active{{end}}" href="{{AppSubUrl}}/user/sign_up"><i class="octicon octicon-person-add"></i> {{.i18n.Tr "register"}}</a>
		      	{{end}}
		      	<a class="view-ui item {{if .PageIsSignIn}}active{{end}}" href="{{AppSubUrl}}/user/login"><i class="octicon octicon-sign-in"></i> {{.i18n.Tr "sign_in"}}</a>
		      </div>
		      <div class="ui secondary menu">
		      	<img class="img-15 ui image brand" src="{{AppSubUrl}}/img/favicon.png">
		      	<a class="view-ui item {{if .PageIsHome}}active{{end}}" href="{{AppSubUrl}}/">{{if .IsSigned}}{{.i18n.Tr "dashboard"}}{{else}}{{.i18n.Tr "home"}}{{end}}</a>
		      	<a class="view-ui item {{if .PageIsExplore}}active{{end}}" href="{{AppSubUrl}}/explore">{{.i18n.Tr "explore"}}</a>
		      	<a class="view-ui item" target="_blank" href="http://gogs.io/docs">{{.i18n.Tr "help"}}</a>
		      	<!-- <div class="item">
		      	  <div class="ui icon input">
		      	    <input class="searchbox" type="text" placeholder="{{.i18n.Tr "search_project"}}">
		      	    <i class="search icon"></i>
		      	  </div>
		      	</div> -->
		      </div>
		    </div>
		  </div>
		</div>
		{{end}}