diff --git a/config.toml b/config.toml index 785b357..9007308 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,26 @@ theme = 'gokarna' -baseURL = 'https://hoernschen.nutfactory.page/' +baseURL = 'https://hoernschen.de/' languageCode = 'en-us' title = 'Hoernschen' + +# Automatically generate robots.txt +enableRobotsTXT = true + +[menu] + [[menu.main]] + # Unique identifier for a menu item + identifier = "posts" + + url = "/posts/" + + # You can add extra information before the name (HTML format is supported), such as icons + pre = "" + + # You can add extra information after the name (HTML format is supported), such as icons + post = "" + + # Display name + name = "Posts" + + # Weights are used to determine the ordering + weight = 1 diff --git a/content/posts/first_post.md b/content/posts/first_post.md new file mode 100644 index 0000000..e4a6531 --- /dev/null +++ b/content/posts/first_post.md @@ -0,0 +1,10 @@ +--- +title: "First_post" +date: 2023-10-28T22:19:12+02:00 +draft: true +type: "post" +--- + +This is a Test. + +Hello World!