parent
3044b66a6e
commit
ce8ae5abff
5 changed files with 78 additions and 68 deletions
@ -1,8 +1,13 @@ |
||||
--- |
||||
title: "{{ replace .Name "-" " " | title }}" |
||||
date: {{ .Date }} |
||||
draft: true |
||||
comments: false |
||||
images: |
||||
--- |
||||
|
||||
+++ |
||||
author = "Maik de Kruif" |
||||
title = "{{ replace .Name "-" " " | title }}" |
||||
date = {{ .Date }} |
||||
description = "" |
||||
images = [] |
||||
tags = [ |
||||
"untagged", |
||||
] |
||||
categories = [ |
||||
"uncategorized", |
||||
] |
||||
+++ |
||||
|
@ -1,10 +1,13 @@ |
||||
--- |
||||
title: "{{ replace .Name "-" " " | title }}" |
||||
date: {{ .Date }} |
||||
draft: true |
||||
toc: false |
||||
images: |
||||
tags: |
||||
- untagged |
||||
--- |
||||
|
||||
+++ |
||||
author = "Maik de Kruif" |
||||
title = "{{ replace .Name "-" " " | title }}" |
||||
date = {{ .Date }} |
||||
description = "" |
||||
images = [] |
||||
tags = [ |
||||
"untagged", |
||||
] |
||||
categories = [ |
||||
"uncategorized", |
||||
] |
||||
+++ |
||||
|
@ -1,22 +1,24 @@ |
||||
<!DOCTYPE html> |
||||
<html lang="{{ .Site.Language }}"> |
||||
<head> |
||||
{{ partial "head.html" . }} |
||||
</head> |
||||
|
||||
<body class="{{ if ne $.Site.Params.defaultTheme "light" -}} dark-theme {{- end -}}"> |
||||
<div class="container"> |
||||
{{ partial "header.html" . }} |
||||
<head> |
||||
{{ partial "head.html" . }} |
||||
</head> |
||||
|
||||
<div class="content"> |
||||
{{ block "main" . }}{{ end }} |
||||
</div> |
||||
<body class="{{ if ne $.Site.Params.defaultTheme "light" -}} dark-theme {{- end -}}"> |
||||
<div class="container"> |
||||
{{ partial "header.html" . }} |
||||
|
||||
{{ block "footer" . }} |
||||
{{ partial "footer.html" . }} |
||||
{{ end }} |
||||
<div class="content"> |
||||
{{ block "main" . }}{{ end }} |
||||
</div> |
||||
|
||||
{{ partial "javascript.html" . }} |
||||
</body> |
||||
</html> |
||||
{{ block "footer" . }} |
||||
{{ partial "footer.html" . }} |
||||
{{ end }} |
||||
</div> |
||||
|
||||
{{ partial "javascript.html" . }} |
||||
</body> |
||||
|
||||
</html> |
Before Width: | Height: | Size: 317 B After Width: | Height: | Size: 317 B |
Loading…
Reference in new issue