init commit

This commit is contained in:
Arian Furrer 2024-02-10 13:57:41 +01:00
commit 585ee30ebf
9 changed files with 134 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.hugo_build.lock
public/

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/hugo-theme-techdoc"]
path = themes/hugo-theme-techdoc
url = https://github.com/thingsym/hugo-theme-techdoc.git

1
README.md Normal file
View File

@ -0,0 +1 @@
Dieses Repo enthält die Dateien, welche ich für die HUGO-Seite <https://bs-notes.arian.li> brauche.

9
archetypes/default.md Normal file
View File

@ -0,0 +1,9 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
{{< toc >}}
{{< style_regular >}}

14
content/_index.md Normal file
View File

@ -0,0 +1,14 @@
+++
title = 'Startseite'
date = 2024-02-08T21:05:36+01:00
draft = true
type = 'page'
+++
Wilkommen auf der Startseite.
Auf <https://notes.arian.li> sind meine Notizen verfügbar, welche ich im Basislehrjahr schrieb. Sie wurden mit [Hugo](https://gohugo.io) zu dieser Webseite kompiliert.
Die Notizen wurden 2020 auf Papier geschrieben, 2021 digitalisiert und 2024 etwas abgeändert, um mit Hugo kompatibel zu sein. Aufgeteilt sind die Notizen nach [Modul](https://www.modulbaukasten.ch/?d=56567396-6e82-eb11-a812-0022486f6f83). Hier sind nur Notizen bez. der überbetrieblichen Kursen (üK) der Ausbildung "Informatiker Systemtechnik EFZ" zu finden, und nur in Modulen, in denen ich Notizen schrieb.
Üblicherweise sind Quellen ganz am Ende des Dokumentes angeben. Kapitel von Büchern, die wir lesen **mussten**, sind üblicherweise vor dem Rest des Buches. Dies liegt daran, dass ich die Bücher erst fertig las, nachdem ich die obligatorischen Kapiteln las.

54
hugo.toml Normal file
View File

@ -0,0 +1,54 @@
baseURL = 'https://bbw-notes.arian.li'
languageCode = 'de-ch'
title = "Arian's Berufsschul-Notizen (Informatik Systemtechnik EFZ)"
theme = 'hugo-theme-techdoc'
[params]
menu_style = 'slide-menu'
custom_background_color = '#902cf4'
[menu]
[[menu.main]]
name = "Home"
url = "https://bbw-notes.arian.li"
weight = 1
[[menu.main]]
name = "Basislehrjahr-Notizen"
url = "https://azo-notes.arian.li"
weight = 2
[[menu.main]]
name = "Persönliche Homepage"
url = "https://www.arian.li"
weight = 3
[[menu.main]]
name = "PlantUML Server"
url = "https://uml.arian.li"
weight = 4
[[menu.main]]
name = "Wastebin"
url = "https://paste.arian.li"
weight = 5
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.renderer]
unsafe= true
[markup.tableOfContents]
startLevel = 1
endLevel = 6
ordered = false
[markup.goldmark.parser]
autoHeadingID = true
autoHeadingIDType = 'github'
[markup.goldmark.extensions.typographer]
disable = true
[params.meta]
description = "Arian's Berufsschul-Notizen (Informatik Systemtechnik EFZ)"
author = "Arian Furrer"

View File

@ -0,0 +1,42 @@
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<style>
main h1:nth-child(1) {
border-bottom: 2px solid black;
font-size: 300%;
margin-bottom: 10px;
color: #6272a4;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
main h1 {
color: #bd93f9;
}
h2, h3 {
font-style: italic;
color: #ff79c6;
}
h4 {
font-style: italic;
}
.toc {
border: .15rem solid #757575;
padding: 1rem;
margin-top: 1rem;
margin-bottom: 1em;
color: #757575;
}
.toc-header {
color: #757575;
font-size: 1.5rem;
}
#TableOfContents > ul {
list-style-type: none;
padding-left: 1em;
}
#TableOfContents > ul > li ul {
list-style-type: none;
padding-left: 1em;
}
</style>

View File

@ -0,0 +1,9 @@
<!-- ToC - Author: Robbi Nespu -->
<details id="TableOfContents">
<summary>Anklicken um Inhaltsverzeichnis anzuzeigen</summary>
<aside class="toc">
<strong class="toc-header">Inhaltsverzeichnis</strong>
{{ .Page.TableOfContents }}
</aside>
</details>

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB