retrogit/app/templates/base/page.html
Mihai Parparita 2804ba82f1 Add viewport.
2014-10-19 23:39:16 -07:00

21 lines
601 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{template "title" .}}</title>
<meta name="viewport" content="initial-scale=1 maximum-scale=1 user-scalable=no">
<link rel="stylesheet" href="/static/main.css">
<link rel="stylesheet" href="/static/octicons/octicons.css">
</head>
<body>
<div class="header">
<img src="/static/images/header.png" srcset="/static/images/header.png 1x, /static/images/header@2x.png 2x" width="1114" height="154" alt="GitHop">
</div>
<div class="body">
<h1>{{template "title" .}}</h1>
{{template "body" .}}
</div>
</body>
</html>