mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-03-25 09:25:49 +00:00
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>RetroGit {{template "title" .}}</title>
|
|
<meta name="viewport" content="initial-scale=1 maximum-scale=1 user-scalable=no">
|
|
<link rel="shortcut icon" sizes="16x16 32x32" href="{{absoluteUrlForPath "/favicon.ico"}}">
|
|
<link rel="stylesheet" href="/static/main.css">
|
|
<link rel="stylesheet" href="/static/octicons/octicons.css">
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<a href="/">
|
|
<img src="/static/images/header.jpg" srcset="/static/images/header.jpg 1x, /static/images/header@2x.jpg 2x" width="1111" height="153" alt="RetroGit">
|
|
</a>
|
|
</div>
|
|
|
|
<div class="body">
|
|
<h1>{{template "title" .}}</h1>
|
|
|
|
{{range .Flashes}}
|
|
{{template "flash" .}}
|
|
{{end}}
|
|
|
|
{{template "body" .}}
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<div class="contents">
|
|
A project by <a href="https://persistent.info">Mihai Parparita</a>
|
|
-
|
|
<a href="{{routeUrl "faq"}}">FAQ</a>
|
|
-
|
|
<a href="https://github.com/mihaip/retrogit">Source</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-57670408-1', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</body>
|
|
</html>
|