commit 585ee30ebf92c006fbc17f9001ec6ac08585ba18 Author: arian Date: Sat Feb 10 13:57:41 2024 +0100 init commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4b387a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.hugo_build.lock +public/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..98e404f --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-theme-techdoc"] + path = themes/hugo-theme-techdoc + url = https://github.com/thingsym/hugo-theme-techdoc.git diff --git a/README.md b/README.md new file mode 100644 index 0000000..8c1feb1 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Dieses Repo enthält die Dateien, welche ich für die HUGO-Seite brauche. diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..fb72f3f --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,9 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ + +{{< toc >}} + +{{< style_regular >}} diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..67c7265 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,14 @@ ++++ +title = 'Startseite' +date = 2024-02-08T21:05:36+01:00 +draft = true +type = 'page' ++++ + +Wilkommen auf der Startseite. + +Auf 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. \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..efd7ea3 --- /dev/null +++ b/hugo.toml @@ -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" diff --git a/layouts/shortcodes/style_regular.html b/layouts/shortcodes/style_regular.html new file mode 100644 index 0000000..a8aa13f --- /dev/null +++ b/layouts/shortcodes/style_regular.html @@ -0,0 +1,42 @@ + + \ No newline at end of file diff --git a/layouts/shortcodes/toc.html b/layouts/shortcodes/toc.html new file mode 100644 index 0000000..e3b6907 --- /dev/null +++ b/layouts/shortcodes/toc.html @@ -0,0 +1,9 @@ + +
+ Anklicken um Inhaltsverzeichnis anzuzeigen + +
+ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..361ba23 Binary files /dev/null and b/static/favicon.ico differ