mirror of
https://github.com/SebastianStork/blog.git
synced 2026-01-21 19:51:34 +01:00
Add basic scaffolding
Following https://www.getzola.org/themes/linkita/
This commit is contained in:
parent
f4654cfc1b
commit
83176c294a
7 changed files with 42 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,5 +1,6 @@
|
||||||
# Zola
|
# Zola
|
||||||
themes/
|
themes/
|
||||||
|
public/
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
.direnv/
|
.direnv/
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# The URL the site will be built for
|
|
||||||
base_url = "https://sstork.dev"
|
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
|
# Whether to automatically compile all Sass files in the sass directory
|
||||||
compile_sass = true
|
compile_sass = true
|
||||||
|
|
|
||||||
8
content/_index.md
Normal file
8
content/_index.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
+++
|
||||||
|
title = ""
|
||||||
|
description = ""
|
||||||
|
sort_by = "date"
|
||||||
|
paginate_by = 10
|
||||||
|
[extra]
|
||||||
|
profile = "Sebastian Stork"
|
||||||
|
+++
|
||||||
4
content/pages/_index.md
Normal file
4
content/pages/_index.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
+++
|
||||||
|
render = false
|
||||||
|
page_template = "pages.html"
|
||||||
|
+++
|
||||||
7
content/pages/about.md
Normal file
7
content/pages/about.md
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
+++
|
||||||
|
title = "About me"
|
||||||
|
description = ""
|
||||||
|
path = "about"
|
||||||
|
+++
|
||||||
|
|
||||||
|
## Hello, world!
|
||||||
8
content/posts/_index.md
Normal file
8
content/posts/_index.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
+++
|
||||||
|
title = "Archive"
|
||||||
|
description = ""
|
||||||
|
template = "archive.html"
|
||||||
|
transparent = true
|
||||||
|
[extra]
|
||||||
|
date_format = "%m-%d"
|
||||||
|
+++
|
||||||
6
content/posts/hello.md
Normal file
6
content/posts/hello.md
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
+++
|
||||||
|
title = "Hello"
|
||||||
|
date = 2025-10-19
|
||||||
|
+++
|
||||||
|
|
||||||
|
## Hello, world!
|
||||||
Loading…
Add table
Add a link
Reference in a new issue