Initial code commit
Add hermit theme Add general folder structure Added small first post Added favicon images Added .gitignore
14
.gitignore
vendored
Normal file
|
@ -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
|
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/hermit"]
|
||||||
|
path = themes/hermit
|
||||||
|
url = https://github.com/Track3/hermit.git
|
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
73
config.toml
Normal file
|
@ -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 = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
||||||
|
# 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
|
23
content/posts/first-post.md
Normal file
|
@ -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
|
2
layouts/robots.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
User-agent: *
|
BIN
static/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
static/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
static/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
9
static/browserconfig.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#00aba9</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
BIN
static/favicon-16x16.png
Normal file
After Width: | Height: | Size: 636 B |
BIN
static/favicon-32x32.png
Normal file
After Width: | Height: | Size: 911 B |
BIN
static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
static/mstile-150x150.png
Normal file
After Width: | Height: | Size: 900 B |
1
static/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="1118.667" height="1118.667" viewBox="0 0 839.000000 839.000000"><path d="M0 198.5V276h139v442h155V276h143v442h155l.2-79.7.3-79.8 19.5 25c10.7 13.8 22.2 28.6 25.5 33.1 3.3 4.4 22.1 28.8 41.8 54.1l35.8 46.1 9.3-7.1c5.1-4 14.8-11.5 21.6-16.7 6.7-5.2 27.6-21.4 46.4-36 18.8-14.6 36.7-28.5 39.9-31l5.6-4.4-2.6-3.6c-1.5-1.9-11.1-14.3-21.3-27.5-10.2-13.2-19.4-25.2-20.5-26.6-5.3-7-84.5-109.4-119.9-154.8-7.5-9.6-13.3-17.7-13.1-18.2.3-.4 6.5-5.4 13.8-11.1 12.7-9.9 75.6-59.5 94.2-74.3 5-3.9 19.9-15.8 33.2-26.4l24.3-19.3-7.3-9.1c-4-5.1-13.2-16.6-20.3-25.7-7.2-9.1-25.5-32.4-40.8-51.8-15.3-19.3-27.9-35.2-28.1-35.2-.1 0-10.8 8.3-23.6 18.6-12.9 10.2-31.2 24.7-40.8 32.2-9.5 7.5-29.1 23-43.5 34.3l-26.1 20.6-.3-61.4-.2-61.3H0v77.5z"/></svg>
|
After Width: | Height: | Size: 788 B |
19
static/site.webmanifest
Normal file
|
@ -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"
|
||||||
|
}
|
1
static/status.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
OK
|
1
themes/hermit
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit fc2dea04366bc3416aa1f35bbfa860d7843b0ca7
|