diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ea6f52c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+# Created by https://www.gitignore.io/api/hugo
+# Edit at https://www.gitignore.io/?templates=hugo
+
+### Hugo ###
+# Generated files by hugo
+/public/
+/resources/_gen/
+
+# Executable may be added to repository
+hugo.exe
+hugo.darwin
+hugo.linux
+
+# End of https://www.gitignore.io/api/hugo
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..ff46467
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "themes/hermit"]
+ path = themes/hermit
+ url = https://github.com/Track3/hermit.git
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.toml b/config.toml
new file mode 100644
index 0000000..d5a61a8
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,73 @@
+baseURL = "https://saibotk.de"
+languageCode = "en-us"
+defaultContentLanguage = "en"
+title = "Saiblog"
+theme = "hermit"
+# enableGitInfo = true
+pygmentsCodefences = true
+pygmentsUseClasses = true
+# hasCJKLanguage = true # If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right.
+rssLimit = 10 # Maximum number of items in the RSS feed.
+copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template.
+enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/functions/emojify/
+# googleAnalytics = "UA-123-45"
+# disqusShortname = "yourdiscussshortname"
+enableRobotsTXT=true
+
+[author]
+ name = "saibotk"
+
+[blackfriday]
+ # hrefTargetBlank = true
+ # noreferrerLinks = true
+ # nofollowLinks = true
+
+[taxonomies]
+ tag = "tags"
+ # Categories are disabled by default.
+
+[params]
+ dateform = "Jan 2, 2006"
+ dateformShort = "Jan 2"
+ dateformNum = "2006-01-02"
+ dateformNumTime = "2006-01-02 15:04 -0700"
+
+ # Metadata mostly used in document's head
+ description = "My personal blog about various code / devops related things."
+ # images = [""]
+ themeColor = "#494f5c"
+
+ homeSubtitle = "My personal blog about various code / devops related things."
+ footerCopyright = ' · CC BY-NC 4.0'
+ # bgImg = "" # Homepage background-image URL
+
+ # Prefix of link to the git commit detail page. GitInfo must be enabled.
+ # gitUrl = "https://github.com/username/repository/commit/"
+
+ # Toggling this option needs to rebuild SCSS, requires Hugo extended version
+ justifyContent = false # Set "text-align: justify" to `.content`.
+
+ relatedPosts = true # Add a related content section to all single posts page
+
+ code_copy_button = true # Turn on/off the code-copy-button for code-fields
+
+ # Add custom css
+ # customCSS = ["css/foo.css", "css/bar.css"]
+
+ # Social Icons
+ # Check https://github.com/Track3/hermit#social-icons for more info.
+
+ [[params.social]]
+ name = "email"
+ url = "mailto:info (a t) saibotk.de"
+
+ [[params.social]]
+ name = "github"
+ url = "https://github.com/saibotk"
+
+[menu]
+
+ [[menu.main]]
+ name = "Posts"
+ url = "posts/"
+ weight = 10
\ No newline at end of file
diff --git a/content/posts/first-post.md b/content/posts/first-post.md
new file mode 100644
index 0000000..335575b
--- /dev/null
+++ b/content/posts/first-post.md
@@ -0,0 +1,23 @@
+---
+title: "First Post"
+date: 2020-01-07T22:46:09+01:00
+draft: false
+toc: false
+images:
+tags:
+ - welcome
+ - blog
+ - me
+---
+
+## Hello and welcome on my blog
+
+So i wanted to start a blog for a long time,
+not only to just have a random website floating around of course :)
+
+The purpose will be to present solutions / things i encounter during my
+daily work and to hopefully give back some knowledge to people like i was/am,
+who are looking for this exact same problem.
+
+Thank you,
+saibotk
\ No newline at end of file
diff --git a/layouts/robots.txt b/layouts/robots.txt
new file mode 100644
index 0000000..3198de1
--- /dev/null
+++ b/layouts/robots.txt
@@ -0,0 +1,2 @@
+
+User-agent: *
diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png
new file mode 100644
index 0000000..04a0f0c
Binary files /dev/null and b/static/android-chrome-192x192.png differ
diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png
new file mode 100644
index 0000000..70fc002
Binary files /dev/null and b/static/android-chrome-512x512.png differ
diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png
new file mode 100644
index 0000000..f12b77f
Binary files /dev/null and b/static/apple-touch-icon.png differ
diff --git a/static/browserconfig.xml b/static/browserconfig.xml
new file mode 100644
index 0000000..5aecc91
--- /dev/null
+++ b/static/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #00aba9
+
+
+
diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png
new file mode 100644
index 0000000..a74c190
Binary files /dev/null and b/static/favicon-16x16.png differ
diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png
new file mode 100644
index 0000000..46b707a
Binary files /dev/null and b/static/favicon-32x32.png differ
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..87ae1e2
Binary files /dev/null and b/static/favicon.ico differ
diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png
new file mode 100644
index 0000000..7cc1667
Binary files /dev/null and b/static/mstile-150x150.png differ
diff --git a/static/safari-pinned-tab.svg b/static/safari-pinned-tab.svg
new file mode 100644
index 0000000..795c583
--- /dev/null
+++ b/static/safari-pinned-tab.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/site.webmanifest b/static/site.webmanifest
new file mode 100644
index 0000000..8265899
--- /dev/null
+++ b/static/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "Saiblog",
+ "short_name": "Saiblog",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#5c5c5c",
+ "background_color": "#5c5c5c",
+ "display": "standalone"
+}
diff --git a/static/status.txt b/static/status.txt
new file mode 100644
index 0000000..a0aba93
--- /dev/null
+++ b/static/status.txt
@@ -0,0 +1 @@
+OK
\ No newline at end of file
diff --git a/themes/hermit b/themes/hermit
new file mode 160000
index 0000000..fc2dea0
--- /dev/null
+++ b/themes/hermit
@@ -0,0 +1 @@
+Subproject commit fc2dea04366bc3416aa1f35bbfa860d7843b0ca7