Add boilerplate layout
This commit is contained in:
parent
d578b6e11d
commit
e45b6b67c3
|
@ -0,0 +1 @@
|
|||
public/
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" value="width=device-width,initial-scale=1.0">
|
||||
<title>{{ block "title" . }}
|
||||
{{ .Site.Title }}
|
||||
{{ end }}</title>
|
||||
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||||
{{ $style := resources.Get "style.css" | minify }}
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||||
</head>
|
||||
<body>
|
||||
{{ block "main" . }}
|
||||
{{ end }}
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,2 @@
|
|||
{{ define "main" }}
|
||||
{{ end }}
|
Loading…
Reference in New Issue