Starting the work to switch to Hugo
This commit is contained in:
parent
1bf16622c2
commit
9fcb3940ec
13 changed files with 67 additions and 0 deletions
0
themes/hacksite/layouts/404.html
Normal file
0
themes/hacksite/layouts/404.html
Normal file
11
themes/hacksite/layouts/_default/baseof.html
Normal file
11
themes/hacksite/layouts/_default/baseof.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
0
themes/hacksite/layouts/_default/list.html
Normal file
0
themes/hacksite/layouts/_default/list.html
Normal file
0
themes/hacksite/layouts/_default/single.html
Normal file
0
themes/hacksite/layouts/_default/single.html
Normal file
0
themes/hacksite/layouts/index.html
Normal file
0
themes/hacksite/layouts/index.html
Normal file
0
themes/hacksite/layouts/partials/footer.html
Normal file
0
themes/hacksite/layouts/partials/footer.html
Normal file
4
themes/hacksite/layouts/partials/head.html
Normal file
4
themes/hacksite/layouts/partials/head.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<head>
|
||||
<title>{{ block "title" . }}{{ if .IsHome }} {{ .Site.Title }} {{ else }} {{ .Title }} - {{ .Site.Title }} {{ end }}{{ end }}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/assets/bootstrap.min.css"/>
|
||||
</head>
|
0
themes/hacksite/layouts/partials/header.html
Normal file
0
themes/hacksite/layouts/partials/header.html
Normal file
Reference in a new issue