diff --git a/config.toml b/config.toml index 4a47bd8..0b71fb0 100644 --- a/config.toml +++ b/config.toml @@ -106,14 +106,14 @@ lastmod = ["lastmod", ":git", "date"] weight = 30 [[menu.copyright_footer]] - url = "/about" - name = "About Me" + url = "/blog" + name = "Blog" weight = 10 -#[[menu.copyright_footer]] -# url = "#" -# name = "Another Link" -# weight = 30 +[[menu.copyright_footer]] + url = "/about" + name = "About Me" + weight = 20 [[menu.footer_social]] weight = 10 diff --git a/content/_global/404.md b/content/_global/404.md index ed28d90..0055402 100644 --- a/content/_global/404.md +++ b/content/_global/404.md @@ -5,7 +5,7 @@ weight = 150 #title = "" # default i18n "404.title" #subtitle = "" # default i18n "404.subtitle" -#redirect_text = "" # default i18n "404.direction" +redirect_text = "You can always go back to my main page" # default i18n "404.direction" #button_text = "" # default i18n "404.button" #redirect_url = "" # default / diff --git a/content/about/item1.md b/content/about/item1.md index 9be7897..d8d62f1 100644 --- a/content/about/item1.md +++ b/content/about/item1.md @@ -7,7 +7,7 @@ background = "light" align = "left" title = "Who am I" -subtitle = "I am a self-taught artist and programmer and I do a lot of hardware work as well." +subtitle = "I am a self-taught artist and programmer who lives in northern Sweden, and I do a lot of hardware work as well." # Subtitle pre and post item #pre = "" diff --git a/content/about/item2.md b/content/about/item2.md index a44c409..d7b2ae0 100644 --- a/content/about/item2.md +++ b/content/about/item2.md @@ -1,13 +1,16 @@ +++ fragment = "item" -#disabled = false +disabled = false + date = "2017-10-04" +lastmod = "2020-12-15" + weight = 110 background = "light" align = "right" -#title = "" -subtitle= "I am Levi Mattiasson and i am mostly going under the name EDUDD22." +title = "" +subtitle= "I am Levi Mattiasson and i am mostly going under the name Aroy." # Subtitle pre and post item #pre = "" diff --git a/content/blog/_index.md b/content/blog/_index.md index c008801..8e43857 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,8 +1,10 @@ +++ date = "2020-12-01" +lastmod = "2020-12-15" fragment = "list" # declare list fragment weight = 100 title = "Blog" +subtitle = "A list of all blog posts" section = "blog" # section to pull the list of pages +++ \ No newline at end of file diff --git a/content/blog/docker-cheat-sheet/content.md b/content/blog/docker-cheat-sheet/content.md new file mode 100644 index 0000000..b227e22 --- /dev/null +++ b/content/blog/docker-cheat-sheet/content.md @@ -0,0 +1,33 @@ ++++ +title = "Docker Cheat Sheet" +#subtitle = "This is my Docker commands sheat sheet." +date = "2020-12-02" +fragment = "content" +weight = 100 +tags = ["docker", "cheat", "sheet"] ++++ + +# A list of docker commands + +### List images + +``` bash +docker images [OPTIONS] [REPOSITORY[:TAG]] +``` + +#### Options + +| Name, shorthand | Default | Description | +| :-------------- | :------:| --------------------------------------------------- | +| `--all , -a` | | Show all images (default hides intermediate images) | +| `--digests` | | Show digests | +| `--filter , -f` | | Filter output based on conditions provided | +| `--format` | | Pretty-print images using a Go template | +| `--no-trunc` | | Don’t truncate output | +| `--quiet , -q` | | Only show numeric IDs | + +### Remove one or more containers + +``` bash +docker rm [OPTIONS] CONTAINER [CONTAINER...] +``` diff --git a/content/blog/docker-cheat-sheet/index.md b/content/blog/docker-cheat-sheet/index.md new file mode 100644 index 0000000..3406b0f --- /dev/null +++ b/content/blog/docker-cheat-sheet/index.md @@ -0,0 +1,5 @@ ++++ +title = "Docker Cheat Sheet" +subtitle = "This is my Docker commands sheat sheet." +date = "2020-12-02" ++++ \ No newline at end of file diff --git a/content/blog/hello-world/content.md b/content/blog/hello-world/content.md index 281fbe4..03c3afb 100644 --- a/content/blog/hello-world/content.md +++ b/content/blog/hello-world/content.md @@ -1,6 +1,11 @@ +++ +title = "Hello World!" +subtitle = "Hello world! This is my first blog post." fragment = "content" weight = 100 +tags = ["test", "test2"] +++ -Hello world! This is my first blog post. \ No newline at end of file +Hello world! This is my first blog post. + +![Demo Image](/images/header.jpg) diff --git a/content/blog/hello-world/index.md b/content/blog/hello-world/index.md index c64ceb7..be60fa5 100644 --- a/content/blog/hello-world/index.md +++ b/content/blog/hello-world/index.md @@ -1,4 +1,7 @@ +++ title = "Hello World!" +subtitle = "Hello world! This is my first blog post." date = "2020-12-01" +draft = true +tags = ["test", "test2"] +++ \ No newline at end of file diff --git a/content/blog/icon-themes-kde/content.md b/content/blog/icon-themes-kde/content.md new file mode 100644 index 0000000..1ea4143 --- /dev/null +++ b/content/blog/icon-themes-kde/content.md @@ -0,0 +1,24 @@ ++++ +title = "Themes & Icons in KDE" +subtitle = "Where are themes and icons stored in KDE?" +fragment = "content" +weight = 100 +date = "2020-12-13" +tags = ["kde", "themes", "theme", "icons", "icon"] ++++ + +### KDE Global + +Systemwide themes and icons are placed in: + +``` Path +/usr/share/plasma/desktoptheme/ +/usr/share/icons/ +``` + +User spesific themes and icons are placed in: + +``` Path +~/.local/share/plasma/desktoptheme/ +~/.local/share/icons/ +``` diff --git a/content/blog/icon-themes-kde/index.md b/content/blog/icon-themes-kde/index.md new file mode 100644 index 0000000..4099be2 --- /dev/null +++ b/content/blog/icon-themes-kde/index.md @@ -0,0 +1,6 @@ ++++ +title = "Themes & Icon in KDE" +subtitle = "Where are themes and icons stored in kde?" +date = "2020-12-13" +tags = ["kde", "themes", "theme", "icons", "icon"] ++++ \ No newline at end of file diff --git a/content/search/index.md b/content/search/index.md new file mode 100644 index 0000000..af27958 --- /dev/null +++ b/content/search/index.md @@ -0,0 +1,6 @@ ++++ +fragment = "search" +weight = 100 +title = "Search" +background = "light" ++++