From 83176c294a1f26b770705f595f38459eba035688 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 19 Oct 2025 22:40:05 +0200 Subject: [PATCH] Add basic scaffolding Following https://www.getzola.org/themes/linkita/ --- .gitignore | 1 + config.toml | 9 ++++++++- content/_index.md | 8 ++++++++ content/pages/_index.md | 4 ++++ content/pages/about.md | 7 +++++++ content/posts/_index.md | 8 ++++++++ content/posts/hello.md | 6 ++++++ 7 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 content/_index.md create mode 100644 content/pages/_index.md create mode 100644 content/pages/about.md create mode 100644 content/posts/_index.md create mode 100644 content/posts/hello.md diff --git a/.gitignore b/.gitignore index d356fc2..8b2e8d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Zola themes/ +public/ # Nix .direnv/ diff --git a/config.toml b/config.toml index 17b78a8..5f1e0a7 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,12 @@ -# The URL the site will be built for base_url = "https://sstork.dev" +title = "sstork.dev" +description = "" +theme = "linkita" +default_language = "en" +author = "Sebastian Stork" + +generate_feeds = true +feed_filenames = ["atom.xml"] # Whether to automatically compile all Sass files in the sass directory compile_sass = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..db3208f --- /dev/null +++ b/content/_index.md @@ -0,0 +1,8 @@ ++++ +title = "" +description = "" +sort_by = "date" +paginate_by = 10 +[extra] +profile = "Sebastian Stork" ++++ \ No newline at end of file diff --git a/content/pages/_index.md b/content/pages/_index.md new file mode 100644 index 0000000..5ac5a92 --- /dev/null +++ b/content/pages/_index.md @@ -0,0 +1,4 @@ ++++ +render = false +page_template = "pages.html" ++++ \ No newline at end of file diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 0000000..5b9dea2 --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,7 @@ ++++ +title = "About me" +description = "" +path = "about" ++++ + +## Hello, world! \ No newline at end of file diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..5c3990f --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Archive" +description = "" +template = "archive.html" +transparent = true +[extra] +date_format = "%m-%d" ++++ \ No newline at end of file diff --git a/content/posts/hello.md b/content/posts/hello.md new file mode 100644 index 0000000..24fc1a8 --- /dev/null +++ b/content/posts/hello.md @@ -0,0 +1,6 @@ ++++ +title = "Hello" +date = 2025-10-19 ++++ + +## Hello, world! \ No newline at end of file