Title Subtitle H3 H4 H5 H6 list elements another unordered list Normal text. +generic code +Important +Very important +Important Variant +echo "Code Block" Link
+diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..bb5a37b --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +## Start Server +```sh +hugo server --disableFastRender -D #D to include drafts +``` + +## New Post +```sh +hugo new content directory/name.md +``` + +## Generate Site to Publish +```sh +hugo +``` \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..7f238e2 --- /dev/null +++ b/config.yaml @@ -0,0 +1,4 @@ +baseURL: http://example.org/ +languageCode: en-us +title: TrudeWeb +theme: PaperMod \ No newline at end of file diff --git a/content/test/test.md b/content/test/test.md new file mode 100644 index 0000000..2a5dad6 --- /dev/null +++ b/content/test/test.md @@ -0,0 +1,37 @@ +--- +title: "Test" +date: 2024-05-29T20:39:37+01:00 +draft: true +--- + +# Title +## Subtitle +### H3 +#### H4 +##### H5 +###### H6 + +1. list +2. elements +3. another + +- unordered +- list + +Normal text. + +`generic code` + +*Important* + +**Very important** + +_Important Variant_ + +```sh +echo "Code Block" +``` + +[Link](https://example.org) + +![Image]() \ No newline at end of file diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..b879eee --- /dev/null +++ b/public/404.html @@ -0,0 +1,179 @@ + + + +
+ + + +Title Subtitle H3 H4 H5 H6 list elements another unordered list Normal text. +generic code +Important +Very important +Important Variant +echo "Code Block" Link
+Title Subtitle H3 H4 H5 H6 list elements another unordered list Normal text. +generic code +Important Very important Important Variant +echo "Code Block" Link
+Normal text.
+generic code
Important
+Very important
+Important Variant
+echo "Code Block"
+
+