commit 16edfac859a1e7cade752c894ab21f0604e55824 Author: Franz Klotsche Date: Sun Nov 9 19:09:05 2025 +0100 Add new branch (portfolio) - Hogan_pragmatic-bookshelf diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..1b287cc Binary files /dev/null and b/.DS_Store differ diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..5ae3c01 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: false +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..aff5830 --- /dev/null +++ b/config.toml @@ -0,0 +1,4 @@ +baseURL = 'http://example.org/' +languageCode = 'en-US' +title = 'Fransz Portfolio' +theme = 'Basic' \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..8def68b --- /dev/null +++ b/content/_index.md @@ -0,0 +1,12 @@ +--- +title: "Welcome" +date: 2025-11-01T21:52:55+01:00 +description: "Landing page" +--- +* Persönliche Vorstellung +* Andere Websites +* Mein Lebenslauf + +Das soll irgendwann mal eine ordentliche Portfolio Seite werden. + +Anfangs wird es hier Folgendes zu finden sein: \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..e8d5e2e --- /dev/null +++ b/content/about.md @@ -0,0 +1,7 @@ +--- +title: "About" +date: 2025-11-02T21:34:47+01:00 +draft: false +--- + +Hi. My name is Fransz, with a sharp ß. \ No newline at end of file diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..6efe04a --- /dev/null +++ b/content/contact.md @@ -0,0 +1,7 @@ +--- +title: "Contact" +date: 2025-11-02T21:52:55+01:00 +draft: false +--- + +* Dino \ No newline at end of file diff --git a/content/resume.md b/content/resume.md new file mode 100644 index 0000000..dfee6ab --- /dev/null +++ b/content/resume.md @@ -0,0 +1,7 @@ +--- +title: "Résumé" +date: 2025-11-02T21:49:23+01:00 +draft: false +--- + +curuculum vitae \ No newline at end of file diff --git a/themes/basic/LICENSE b/themes/basic/LICENSE new file mode 100644 index 0000000..1c9f1ba --- /dev/null +++ b/themes/basic/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2025 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/themes/basic/archetypes/default.md b/themes/basic/archetypes/default.md new file mode 100644 index 0000000..ac36e06 --- /dev/null +++ b/themes/basic/archetypes/default.md @@ -0,0 +1,2 @@ ++++ ++++ diff --git a/themes/basic/layouts/404.html b/themes/basic/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/basic/layouts/_default/baseof.html b/themes/basic/layouts/_default/baseof.html new file mode 100644 index 0000000..5e994fe --- /dev/null +++ b/themes/basic/layouts/_default/baseof.html @@ -0,0 +1,14 @@ + + + {{- partial "head.html" . -}} + +
+ {{- partial "header.html" . -}} + {{- partial "nav.html" . -}} +
+ {{- block "main" . }}{{- end }} +
+ {{- partial "footer.html" . -}} +
+ + diff --git a/themes/basic/layouts/_default/list.html b/themes/basic/layouts/_default/list.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/basic/layouts/_default/single.html b/themes/basic/layouts/_default/single.html new file mode 100644 index 0000000..21a939d --- /dev/null +++ b/themes/basic/layouts/_default/single.html @@ -0,0 +1,7 @@ +{{ define "main" }} + +

{{ .Title }}

+ + {{ .Content }} + +{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/index.html b/themes/basic/layouts/index.html new file mode 100644 index 0000000..16222ad --- /dev/null +++ b/themes/basic/layouts/index.html @@ -0,0 +1,5 @@ +{{ define "main" }} + + {{ .Content }} + +{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/partials/footer.html b/themes/basic/layouts/partials/footer.html new file mode 100644 index 0000000..e93aa57 --- /dev/null +++ b/themes/basic/layouts/partials/footer.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/themes/basic/layouts/partials/head.html b/themes/basic/layouts/partials/head.html new file mode 100644 index 0000000..ce99e77 --- /dev/null +++ b/themes/basic/layouts/partials/head.html @@ -0,0 +1,7 @@ + + + + + {{ .Site.Title }} + \ No newline at end of file diff --git a/themes/basic/layouts/partials/header.html b/themes/basic/layouts/partials/header.html new file mode 100644 index 0000000..0f2a132 --- /dev/null +++ b/themes/basic/layouts/partials/header.html @@ -0,0 +1,3 @@ +
+

{{ .Site.Title }}

+
\ No newline at end of file diff --git a/themes/basic/layouts/partials/nav.html b/themes/basic/layouts/partials/nav.html new file mode 100644 index 0000000..7d42fde --- /dev/null +++ b/themes/basic/layouts/partials/nav.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/themes/basic/static/css/style.css b/themes/basic/static/css/style.css new file mode 100644 index 0000000..dc009e7 --- /dev/null +++ b/themes/basic/static/css/style.css @@ -0,0 +1,24 @@ +.container { + margin: 0 auto; + width: 80%; +} +nav, footer { + background-color: #333; + color: #fff; + text-align: center; +} +nav { + display: flex; + flex-direction: column; +} + +nav > a { + flex: 1; + text-align: center; + text-decoration: none; + color: #fff; +} + +@media only screen and (min-width: 768px) { + nav { flex-direction: row; } +} \ No newline at end of file diff --git a/themes/basic/theme.toml b/themes/basic/theme.toml new file mode 100644 index 0000000..8b0a489 --- /dev/null +++ b/themes/basic/theme.toml @@ -0,0 +1,21 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "Basic" +license = "MIT" +licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" +description = "" +homepage = "http://example.com/" +tags = [] +features = [] +min_version = "0.41.0" + +[author] + name = "" + homepage = "" + +# If porting an existing theme +[original] + name = "" + homepage = "" + repo = ""