mirror of
https://github.com/Aroy-Art/Aroy-Art-Site.git
synced 2024-12-26 21:04:23 +01:00
commit
12ab0e5b6c
12 changed files with 99 additions and 12 deletions
12
config.toml
12
config.toml
|
@ -106,14 +106,14 @@ lastmod = ["lastmod", ":git", "date"]
|
||||||
weight = 30
|
weight = 30
|
||||||
|
|
||||||
[[menu.copyright_footer]]
|
[[menu.copyright_footer]]
|
||||||
url = "/about"
|
url = "/blog"
|
||||||
name = "About Me"
|
name = "Blog"
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
||||||
#[[menu.copyright_footer]]
|
[[menu.copyright_footer]]
|
||||||
# url = "#"
|
url = "/about"
|
||||||
# name = "Another Link"
|
name = "About Me"
|
||||||
# weight = 30
|
weight = 20
|
||||||
|
|
||||||
[[menu.footer_social]]
|
[[menu.footer_social]]
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
|
@ -5,7 +5,7 @@ weight = 150
|
||||||
|
|
||||||
#title = "" # default i18n "404.title"
|
#title = "" # default i18n "404.title"
|
||||||
#subtitle = "" # default i18n "404.subtitle"
|
#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"
|
#button_text = "" # default i18n "404.button"
|
||||||
#redirect_url = "" # default /
|
#redirect_url = "" # default /
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ background = "light"
|
||||||
align = "left"
|
align = "left"
|
||||||
|
|
||||||
title = "Who am I"
|
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
|
# Subtitle pre and post item
|
||||||
#pre = ""
|
#pre = ""
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
+++
|
+++
|
||||||
fragment = "item"
|
fragment = "item"
|
||||||
#disabled = false
|
disabled = false
|
||||||
|
|
||||||
date = "2017-10-04"
|
date = "2017-10-04"
|
||||||
|
lastmod = "2020-12-15"
|
||||||
|
|
||||||
weight = 110
|
weight = 110
|
||||||
background = "light"
|
background = "light"
|
||||||
align = "right"
|
align = "right"
|
||||||
|
|
||||||
#title = ""
|
title = ""
|
||||||
subtitle= "I am Levi Mattiasson and i am mostly going under the name EDUDD22."
|
subtitle= "I am Levi Mattiasson and i am mostly going under the name Aroy."
|
||||||
|
|
||||||
# Subtitle pre and post item
|
# Subtitle pre and post item
|
||||||
#pre = ""
|
#pre = ""
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
+++
|
+++
|
||||||
date = "2020-12-01"
|
date = "2020-12-01"
|
||||||
|
lastmod = "2020-12-15"
|
||||||
fragment = "list" # declare list fragment
|
fragment = "list" # declare list fragment
|
||||||
weight = 100
|
weight = 100
|
||||||
|
|
||||||
title = "Blog"
|
title = "Blog"
|
||||||
|
subtitle = "A list of all blog posts"
|
||||||
section = "blog" # section to pull the list of pages
|
section = "blog" # section to pull the list of pages
|
||||||
+++
|
+++
|
33
content/blog/docker-cheat-sheet/content.md
Normal file
33
content/blog/docker-cheat-sheet/content.md
Normal file
|
@ -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...]
|
||||||
|
```
|
5
content/blog/docker-cheat-sheet/index.md
Normal file
5
content/blog/docker-cheat-sheet/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
title = "Docker Cheat Sheet"
|
||||||
|
subtitle = "This is my Docker commands sheat sheet."
|
||||||
|
date = "2020-12-02"
|
||||||
|
+++
|
|
@ -1,6 +1,11 @@
|
||||||
+++
|
+++
|
||||||
|
title = "Hello World!"
|
||||||
|
subtitle = "Hello world! This is my first blog post."
|
||||||
fragment = "content"
|
fragment = "content"
|
||||||
weight = 100
|
weight = 100
|
||||||
|
tags = ["test", "test2"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Hello world! This is my first blog post.
|
Hello world! This is my first blog post.
|
||||||
|
|
||||||
|
![Demo Image](/images/header.jpg)
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
+++
|
+++
|
||||||
title = "Hello World!"
|
title = "Hello World!"
|
||||||
|
subtitle = "Hello world! This is my first blog post."
|
||||||
date = "2020-12-01"
|
date = "2020-12-01"
|
||||||
|
draft = true
|
||||||
|
tags = ["test", "test2"]
|
||||||
+++
|
+++
|
24
content/blog/icon-themes-kde/content.md
Normal file
24
content/blog/icon-themes-kde/content.md
Normal file
|
@ -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/
|
||||||
|
```
|
6
content/blog/icon-themes-kde/index.md
Normal file
6
content/blog/icon-themes-kde/index.md
Normal file
|
@ -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"]
|
||||||
|
+++
|
6
content/search/index.md
Normal file
6
content/search/index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
+++
|
||||||
|
fragment = "search"
|
||||||
|
weight = 100
|
||||||
|
title = "Search"
|
||||||
|
background = "light"
|
||||||
|
+++
|
Loading…
Reference in a new issue