diff --git a/archetypes/default.md b/archetypes/default.md index 25b6752..bdca4fc 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -1,5 +1,5 @@ -+++ -date = '{{ .Date }}' -draft = true -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -+++ +--- +title: '{{ replace .File.ContentBaseName "-" " " | title }}' +date: '{{ .Date }}' +draft: true +--- diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index 8eba6b6..0000000 --- a/hugo.toml +++ /dev/null @@ -1,4 +0,0 @@ -baseURL = 'https://wiki.cafe/' -languageCode = 'en-us' -title = 'Wiki Cafe' -theme = "wikidarity" \ No newline at end of file diff --git a/hugo.yaml b/hugo.yaml new file mode 100644 index 0000000..fa5818b --- /dev/null +++ b/hugo.yaml @@ -0,0 +1,3 @@ +baseURL: https://example.org/ +languageCode: en-us +title: My New Hugo Site diff --git a/themes/wikidarity/archetypes/default.md b/themes/wikidarity/archetypes/default.md index c6f3fce..bdca4fc 100644 --- a/themes/wikidarity/archetypes/default.md +++ b/themes/wikidarity/archetypes/default.md @@ -1,5 +1,5 @@ -+++ -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -date = {{ .Date }} -draft = true -+++ +--- +title: '{{ replace .File.ContentBaseName "-" " " | title }}' +date: '{{ .Date }}' +draft: true +--- diff --git a/themes/wikidarity/content/_index.md b/themes/wikidarity/content/_index.md index 652623b..0737bd3 100644 --- a/themes/wikidarity/content/_index.md +++ b/themes/wikidarity/content/_index.md @@ -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 diff --git a/themes/wikidarity/content/posts/_index.md b/themes/wikidarity/content/posts/_index.md index e7066c0..6749bc1 100644 --- a/themes/wikidarity/content/posts/_index.md +++ b/themes/wikidarity/content/posts/_index.md @@ -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. diff --git a/themes/wikidarity/content/posts/post-1.md b/themes/wikidarity/content/posts/post-1.md index 3e3fc6b..3706362 100644 --- a/themes/wikidarity/content/posts/post-1.md +++ b/themes/wikidarity/content/posts/post-1.md @@ -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. diff --git a/themes/wikidarity/content/posts/post-2.md b/themes/wikidarity/content/posts/post-2.md index 22b8287..725d905 100644 --- a/themes/wikidarity/content/posts/post-2.md +++ b/themes/wikidarity/content/posts/post-2.md @@ -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. diff --git a/themes/wikidarity/content/posts/post-3/index.md b/themes/wikidarity/content/posts/post-3/index.md index ca42a66..5edf889 100644 --- a/themes/wikidarity/content/posts/post-3/index.md +++ b/themes/wikidarity/content/posts/post-3/index.md @@ -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. diff --git a/themes/wikidarity/theme.toml b/themes/wikidarity/theme.yaml similarity index 81% rename from themes/wikidarity/theme.toml rename to themes/wikidarity/theme.yaml index f634667..fbd5477 100644 --- a/themes/wikidarity/theme.toml +++ b/themes/wikidarity/theme.yaml @@ -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]