This repository has been archived on 2022-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gidbig/templates/layout.html
T

18 lines
403 B
HTML
Raw Normal View History

2017-01-09 21:34:37 +01:00
{{ define "base" }}
<html>
<head>
<link rel="stylesheet" href="/static/css/style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
{{template "title" . }}
</head>
<body>
<header>
<h1>Example</h1>
</header>
<div id="page">
{{ template "content" . }}
</div>
</body>
</html>
{{ end }}