There are two kinds of serialization formats in this world: the sort of format that makes you strong, or useless formats, the sort of format that's only suffering. I have no patience for useless formats.
Moments like this require formats who will act and do the unpleasant thing. The necessary thing. There. No more TOML.
This commit is contained in:
parent
e768424392
commit
612ebfdead
@ -1,5 +1,5 @@
|
||||
+++
|
||||
date = '{{ .Date }}'
|
||||
draft = true
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
+++
|
||||
---
|
||||
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date: '{{ .Date }}'
|
||||
draft: true
|
||||
---
|
||||
|
@ -1,4 +0,0 @@
|
||||
baseURL = 'https://wiki.cafe/'
|
||||
languageCode = 'en-us'
|
||||
title = 'Wiki Cafe'
|
||||
theme = "wikidarity"
|
3
hugo.yaml
Normal file
3
hugo.yaml
Normal file
@ -0,0 +1,3 @@
|
||||
baseURL: https://example.org/
|
||||
languageCode: en-us
|
||||
title: My New Hugo Site
|
@ -1,5 +1,5 @@
|
||||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
||||
---
|
||||
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date: '{{ .Date }}'
|
||||
draft: true
|
||||
---
|
||||
|
@ -1,8 +1,8 @@
|
||||
+++
|
||||
title = 'Home'
|
||||
date = 2023-01-01T08:00:00-07:00
|
||||
draft = false
|
||||
+++
|
||||
---
|
||||
date: "2023-01-01T08:00:00-07:00"
|
||||
draft: false
|
||||
title: Home
|
||||
---
|
||||
|
||||
Laborum voluptate pariatur ex culpa magna nostrud est incididunt fugiat
|
||||
pariatur do dolor ipsum enim. Consequat tempor do dolor eu. Non id id anim anim
|
||||
|
@ -1,7 +1,7 @@
|
||||
+++
|
||||
title = 'Posts'
|
||||
date = 2023-01-01T08:30:00-07:00
|
||||
draft = false
|
||||
+++
|
||||
---
|
||||
date: "2023-01-01T08:30:00-07:00"
|
||||
draft: false
|
||||
title: Posts
|
||||
---
|
||||
|
||||
Tempor est exercitation ad qui pariatur quis adipisicing aliquip nisi ea consequat ipsum occaecat. Nostrud consequat ullamco laboris fugiat esse esse adipisicing velit laborum ipsum incididunt ut enim. Dolor pariatur nulla quis fugiat dolore excepteur. Aliquip ad quis aliqua enim do consequat.
|
||||
|
@ -1,9 +1,10 @@
|
||||
+++
|
||||
title = 'Post 1'
|
||||
date = 2023-01-15T09:00:00-07:00
|
||||
draft = false
|
||||
tags = ['red']
|
||||
+++
|
||||
---
|
||||
date: "2023-01-15T09:00:00-07:00"
|
||||
draft: false
|
||||
tags:
|
||||
- red
|
||||
title: Post 1
|
||||
---
|
||||
|
||||
Tempor proident minim aliquip reprehenderit dolor et ad anim Lorem duis sint eiusmod. Labore ut ea duis dolor. Incididunt consectetur proident qui occaecat incididunt do nisi Lorem. Tempor do laborum elit laboris excepteur eiusmod do. Eiusmod nisi excepteur ut amet pariatur adipisicing Lorem.
|
||||
|
||||
|
@ -1,9 +1,11 @@
|
||||
+++
|
||||
title = 'Post 2'
|
||||
date = 2023-02-15T10:00:00-07:00
|
||||
draft = false
|
||||
tags = ['red','green']
|
||||
+++
|
||||
---
|
||||
date: "2023-02-15T10:00:00-07:00"
|
||||
draft: false
|
||||
tags:
|
||||
- red
|
||||
- green
|
||||
title: Post 2
|
||||
---
|
||||
|
||||
Anim eiusmod irure incididunt sint cupidatat. Incididunt irure irure irure nisi ipsum do ut quis fugiat consectetur proident cupidatat incididunt cillum. Dolore voluptate occaecat qui mollit laborum ullamco et. Ipsum laboris officia anim laboris culpa eiusmod ex magna ex cupidatat anim ipsum aute. Mollit aliquip occaecat qui sunt velit ut cupidatat reprehenderit enim sunt laborum. Velit veniam in officia nulla adipisicing ut duis officia.
|
||||
|
||||
|
@ -1,9 +1,12 @@
|
||||
+++
|
||||
title = 'Post 3'
|
||||
date = 2023-03-15T11:00:00-07:00
|
||||
draft = false
|
||||
tags = ['red','green','blue']
|
||||
+++
|
||||
---
|
||||
date: "2023-03-15T11:00:00-07:00"
|
||||
draft: false
|
||||
tags:
|
||||
- red
|
||||
- green
|
||||
- blue
|
||||
title: Post 3
|
||||
---
|
||||
|
||||
Occaecat aliqua consequat laborum ut ex aute aliqua culpa quis irure esse magna dolore quis. Proident fugiat labore eu laboris officia Lorem enim. Ipsum occaecat cillum ut tempor id sint aliqua incididunt nisi incididunt reprehenderit. Voluptate ad minim sint est aute aliquip esse occaecat tempor officia qui sunt. Aute ex ipsum id ut in est velit est laborum incididunt. Aliqua qui id do esse sunt eiusmod id deserunt eu nostrud aute sit ipsum. Deserunt esse cillum Lorem non magna adipisicing mollit amet consequat.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name = 'Wikidarity'
|
||||
name: 'Wikidarity'
|
||||
# license = 'MIT'
|
||||
# licenselink = 'https://github.com/owner/repo/LICENSE'
|
||||
description = 'An elegant theme inspired by the ideas of wiki and solidarity.'
|
||||
description: 'An elegant theme inspired by the ideas of wiki and solidarity.'
|
||||
|
||||
# # The home page of the theme, where the source can be found
|
||||
# homepage = 'https://github.com/owner/repo'
|
||||
@ -20,9 +20,9 @@ description = 'An elegant theme inspired by the ideas of wiki and solidarity.'
|
||||
# ]
|
||||
|
||||
# If the theme has a single author
|
||||
[author]
|
||||
name = 'Christian Galo'
|
||||
homepage = 'https://cgalo.dev'
|
||||
author:
|
||||
name: 'Christian Galo'
|
||||
homepage: 'https://cgalo.dev'
|
||||
|
||||
# # If porting an existing theme
|
||||
# [original]
|
Loading…
x
Reference in New Issue
Block a user