63 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| <!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="referrer" content="no-referrer" />
 | |
| 	<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}}
 | 
