1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html>
- <head{{if AppRootSubUrl}} data-suburl="{{AppRootSubUrl}}"{{end}}>
- <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 .Repository.IsGoget}}<meta name="go-import" content="{{.GoGetImport}} git {{.CloneLink.HTTPS}}">{{end}}
- <link rel="shortcut icon" href="{{AppRootSubUrl}}/img/favicon.png" />
- {{if CdnMode}}
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
- <script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
- {{else}}
- <link rel="stylesheet" href="{{AppRootSubUrl}}/css/font-awesome.min.css">
-
- <script src="{{AppRootSubUrl}}/ng/js/lib/jquery-1.11.1.min.js"></script>
- {{end}}
- <!-- Stylesheet -->
- <link rel="stylesheet" href="{{AppRootSubUrl}}/ng/css/ui.css">
- <link rel="stylesheet" href="{{AppRootSubUrl}}/ng/css/gogs.css">
- <link rel="stylesheet" href="{{AppRootSubUrl}}/ng/fonts/octicons.css">
- <link rel="stylesheet" href="{{AppRootSubUrl}}/css/github.min.css">
- <!-- JavaScript -->
- <script src="{{AppRootSubUrl}}/ng/js/lib/tabs.js"></script>
- <script src="{{AppRootSubUrl}}/ng/js/lib/lib.js"></script>
- <script src="{{AppRootSubUrl}}/ng/js/gogs.js"></script>
- <title>{{if .Title}}{{.Title}} - {{end}}{{AppName}}</title>
- </head>
- <body>
- <div id="wrapper">
- <noscript>Please enable JavaScript in your browser!</noscript>
|