First commit of the theme

This commit is contained in:
Gregory Trolliet 2020-04-27 16:49:21 +02:00
commit 360f7ecd96
24 changed files with 525 additions and 0 deletions

10
archetypes/default.md Normal file
View file

@ -0,0 +1,10 @@
---
title: "{{ replace .Name "-" " " | title }}"
description: ""
date: {{ .Date }}
publishDate: {{ .Date }}
author: "John Doe"
images: []
draft: true
tags: []
---

8
archetypes/page.md Normal file
View file

@ -0,0 +1,8 @@
---
title: "{{ replace .Name "-" " " | title }}"
description: ""
images: []
draft: true
menu: main
weight: 0
---

6
archetypes/section.md Normal file
View file

@ -0,0 +1,6 @@
---
title : "{{ replace .Name "-" " " | title }}"
description: ""
draft: true
weight: 0
---