rushlink/assets/templates/html/base.html.tmpl

16 lines
365 B
Cheetah
Raw Normal View History

2019-09-15 19:51:54 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2019-12-16 11:51:41 +01:00
<title>{{block "title" .}}rushlink{{end}}</title>
<link rel="stylesheet" type="text/css" href="/css/main.css" />
{{block "head-append" .}}{{end -}}
2019-09-15 19:51:54 +02:00
</head>
<body>
2019-09-15 22:54:07 +02:00
{{block "body" .}}
<pre>
{{call .Pre}}
</pre>
{{end}}
2019-09-15 19:51:54 +02:00
</body>
</html>