[wip] website redesign
I have to work on splitting commits in the future. ^^
This commit is contained in:
parent
c169972931
commit
33fb7cb34c
10 changed files with 86 additions and 42 deletions
38
config.yaml
38
config.yaml
|
@ -1,38 +0,0 @@
|
||||||
baseURL: "https://vrifox.cc/"
|
|
||||||
title: "Vris Cute Corner"
|
|
||||||
enableRobotsTXT: true
|
|
||||||
menu:
|
|
||||||
main:
|
|
||||||
- identifier: "home"
|
|
||||||
name: "Startseite"
|
|
||||||
pageref: "/"
|
|
||||||
weight: 1
|
|
||||||
- identifier: "skills"
|
|
||||||
name: "Kenntnisse"
|
|
||||||
pageref: "/kenntnisse/"
|
|
||||||
weight: 2
|
|
||||||
- identifier: "projects"
|
|
||||||
name: "Projekte"
|
|
||||||
pageref: "/portfolio/"
|
|
||||||
weight: 3
|
|
||||||
- identifier: "blog"
|
|
||||||
name: "Blog"
|
|
||||||
pageref: "/blog/"
|
|
||||||
weight: 4
|
|
||||||
#- identifier: "blogroll"
|
|
||||||
# name: "Empfehlungen"
|
|
||||||
# pageref: "/blogroll/"
|
|
||||||
# weight: 5
|
|
||||||
markup:
|
|
||||||
highlight:
|
|
||||||
anchorLineNos: false
|
|
||||||
lineNos: false
|
|
||||||
lineNumbersInTable: false
|
|
||||||
noClasses: false
|
|
||||||
style: "dracula"
|
|
||||||
tabWidth: 4
|
|
||||||
goldmark:
|
|
||||||
extensions:
|
|
||||||
linkify: false
|
|
||||||
renderer:
|
|
||||||
unsafe: true
|
|
17
config/_default/config.yaml
Normal file
17
config/_default/config.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
baseURL: "https://vrifox.cc/"
|
||||||
|
title: "Vris Cute Corner"
|
||||||
|
enableRobotsTXT: true
|
||||||
|
defaultContentLanguage: de
|
||||||
|
markup:
|
||||||
|
highlight:
|
||||||
|
anchorLineNos: false
|
||||||
|
lineNos: false
|
||||||
|
lineNumbersInTable: false
|
||||||
|
noClasses: false
|
||||||
|
style: "dracula"
|
||||||
|
tabWidth: 4
|
||||||
|
goldmark:
|
||||||
|
extensions:
|
||||||
|
linkify: false
|
||||||
|
renderer:
|
||||||
|
unsafe: true
|
6
config/_default/languages.yaml
Normal file
6
config/_default/languages.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
de:
|
||||||
|
languageName: Deutsch
|
||||||
|
weight: 1
|
||||||
|
en:
|
||||||
|
languageName: English
|
||||||
|
weight: 2
|
21
config/_default/menu.yaml
Normal file
21
config/_default/menu.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
main:
|
||||||
|
- identifier: "home"
|
||||||
|
name: "Start"
|
||||||
|
pageref: "/"
|
||||||
|
weight: 1
|
||||||
|
# - identifier: "skills"
|
||||||
|
# name: "Kenntnisse"
|
||||||
|
# pageref: "/kenntnisse/"
|
||||||
|
# weight: 2
|
||||||
|
- identifier: "projects"
|
||||||
|
name: "Projekte"
|
||||||
|
pageref: "/portfolio/"
|
||||||
|
weight: 3
|
||||||
|
- identifier: "blog"
|
||||||
|
name: "Blog"
|
||||||
|
pageref: "/blog/"
|
||||||
|
weight: 4
|
||||||
|
# - identifier: "blogroll"
|
||||||
|
# name: "Empfehlungen"
|
||||||
|
# pageref: "/blogroll/"
|
||||||
|
# weight: 5
|
|
@ -1,3 +1,4 @@
|
||||||
---
|
---
|
||||||
title: "Hola 🖖"
|
title: "Hola 🖖"
|
||||||
---
|
---
|
||||||
|
Deutsch
|
4
content/_index.en.md
Normal file
4
content/_index.en.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: "Holahe 🖖"
|
||||||
|
---
|
||||||
|
English
|
26
content/blog/firefox-dark-mode/index.de.md
Normal file
26
content/blog/firefox-dark-mode/index.de.md
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
title: "Firefox im Dark-Mode"
|
||||||
|
author: ""
|
||||||
|
date: 2021-05-15T11:54:53+02:00
|
||||||
|
categories:
|
||||||
|
tags:
|
||||||
|
|
||||||
|
draft: false
|
||||||
|
type: "post"
|
||||||
|
description: ""
|
||||||
|
slug: firefox-im-dark-mode
|
||||||
|
---
|
||||||
|
|
||||||
|
This is how to enable the dark mode for all compatible websites in your Firefox.
|
||||||
|
|
||||||
|
## Firefox Config
|
||||||
|
|
||||||
|
To enable the Firefox Dark Mode open your Firefox' [about:config](https://support.mozilla.org/en-US/kb/about-config-editor-firefox) and add a **new** boolean `ui.systemUsesDarkTheme` and set it to `1`.
|
||||||
|
|
||||||
|
## Debugging
|
||||||
|
|
||||||
|
For debugging purposes you can switch between dark and light mode using the *Inspector* (right-click > Inspect):
|
||||||
|
|
||||||
|
![Firefox' Inspector dark and light mode](/upload/2021-05-15%20Firefox%20Inspector%20Dark%20Light%20Mode.png)
|
||||||
|
|
||||||
|
You can test this right here on my website 🙂
|
|
@ -8,6 +8,7 @@ tags:
|
||||||
draft: false
|
draft: false
|
||||||
type: "post"
|
type: "post"
|
||||||
description: ""
|
description: ""
|
||||||
|
slug: firefox-dark-mode
|
||||||
---
|
---
|
||||||
|
|
||||||
This is how to enable the dark mode for all compatible websites in your Firefox.
|
This is how to enable the dark mode for all compatible websites in your Firefox.
|
6
i18n/en.yaml
Normal file
6
i18n/en.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
home:
|
||||||
|
other: Home
|
||||||
|
projects:
|
||||||
|
other: Projects
|
||||||
|
blog:
|
||||||
|
other: Blog
|
|
@ -18,11 +18,11 @@
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
{{/*- if .IsTranslated */}}
|
{{- if .Site.IsMultiLingual }}
|
||||||
<aside>
|
<aside>
|
||||||
{{- range .Translations }}
|
{{- range .Site.Languages }}
|
||||||
<a href="{{ .Permalink }}">{{ .Site.Params.languageName }}</a>
|
<a href="{{/* where .Page.TranslationKey .Lang */}}{{/* .Permalink */}}Test{{/* end */}}">{{ .LanguageName }}</a>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</aside>
|
</aside>
|
||||||
{{/*- end */}}
|
{{- end }}
|
||||||
</nav>
|
</nav>
|
||||||
|
|
Loading…
Reference in a new issue