diff --git a/archetypes/presentations.md b/archetypes/presentations.md new file mode 100644 index 0000000..4fd379e --- /dev/null +++ b/archetypes/presentations.md @@ -0,0 +1,12 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +draft: false +Tags: ["minimum vialable product"] +--- + +![alt](//via.placeholder.com/640x150) + +### Tech used +* item +* item +* item diff --git a/archetypes/projects.md b/archetypes/projects.md new file mode 100644 index 0000000..7cb6ae3 --- /dev/null +++ b/archetypes/projects.md @@ -0,0 +1,14 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +draft: false +--- + +![alt](//via.placeholder.com/640x150) + +Description... + +### Tech used + +* item +* item +* item \ No newline at end of file diff --git a/config.toml b/config.toml index 43195f5..7ae7a82 100644 --- a/config.toml +++ b/config.toml @@ -1,8 +1,13 @@ baseURL = 'http://example.org/' languageCode = 'en-US' title = 'Fransz Portfolio' -theme = 'bootstrap5' +# Neocities API-key: 099381b32af21a9c2c68e81968081b26 +theme = 'Basic' -[module] -[[module.imports]] -path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5" \ No newline at end of file +[params] + author = 'Franz Klotsche' + description = 'Just another web-experiment' + +# [module] +# [[module.imports]] +# path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5" \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index aaec4f3..61803bc 100644 --- a/content/_index.md +++ b/content/_index.md @@ -13,5 +13,5 @@ Wie es mir ergangen ist, wo ich jetzt stehe und wo ich mich in einigen Jahren se ### Andere Websites gitea, linkace -## Mein Lebenslauf +### Mein Lebenslauf Tabelarisch mit Kontaktformular? \ No newline at end of file diff --git a/content/presentations/_index.md b/content/presentations/_index.md new file mode 100644 index 0000000..7d039b1 --- /dev/null +++ b/content/presentations/_index.md @@ -0,0 +1,8 @@ +--- +title: "Presentations" +draft: false +--- + +![alt](//via.placeholder.com/640x150) + +Infographics using SVG (Adobe Illustrator, Inkscape) and/or animations using Processing and Adobe After Effects. diff --git a/content/presentations/archive.md b/content/presentations/archive.md new file mode 100644 index 0000000..6ac1a00 --- /dev/null +++ b/content/presentations/archive.md @@ -0,0 +1,13 @@ +--- +title: "Archive" +draft: false +--- + +![alt](//via.placeholder.com/640x150) + +Art and Technology 2011, in Twente Enschede: [redesign art](https://www.tumblr.com/blog/redesignart) + +### Tech used +* item +* item +* item diff --git a/content/projects/_index.md b/content/projects/_index.md new file mode 100644 index 0000000..e564246 --- /dev/null +++ b/content/projects/_index.md @@ -0,0 +1,6 @@ +--- +title: "Projects" +draft: false +--- + +Auf einem Oracle Virtual Private Server habe ich Ubuntu Noble mit Nginx laufen. Zurzeit befinden sich dort zwei aktive (produktive) Webdienste. \ No newline at end of file diff --git a/content/projects/gitea.md b/content/projects/gitea.md new file mode 100644 index 0000000..9f0a1e1 --- /dev/null +++ b/content/projects/gitea.md @@ -0,0 +1,14 @@ +--- +title: "Gitea" +draft: false +--- + +![alt](//via.placeholder.com/640x150) + +Description... + +### Tech used + +* item +* item +* item \ No newline at end of file diff --git a/content/projects/linkace.md b/content/projects/linkace.md new file mode 100644 index 0000000..e56453d --- /dev/null +++ b/content/projects/linkace.md @@ -0,0 +1,14 @@ +--- +title: "Linkace" +draft: false +--- + +![alt](//via.placeholder.com/640x150) + +Description... + +### Tech used + +* item +* item +* item \ No newline at end of file diff --git a/content/resume.md b/content/resume.md index dfee6ab..1d70569 100644 --- a/content/resume.md +++ b/content/resume.md @@ -4,4 +4,4 @@ date: 2025-11-02T21:49:23+01:00 draft: false --- -curuculum vitae \ No newline at end of file +curriculum vitae \ No newline at end of file diff --git a/themes/basic/layouts/_default/list.html b/themes/basic/layouts/_default/list.html index e69de29..f0fd42c 100644 --- a/themes/basic/layouts/_default/list.html +++ b/themes/basic/layouts/_default/list.html @@ -0,0 +1,13 @@ +{{ define "main" }} + +

{{ .Title }}

+ +{{ .Content }} + +
+ {{ range .Pages }} +

{{ .Title }}

+ {{ end }} +
+ +{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/index.html b/themes/basic/layouts/index.html index 16222ad..0ab0895 100644 --- a/themes/basic/layouts/index.html +++ b/themes/basic/layouts/index.html @@ -1,5 +1,10 @@ {{ define "main" }} - {{ .Content }} +

Projekt

+

Das letzte Projekt was aktualisiert wurde: + {{ range first 1 (where .Site.RegularPages "Type" "in" "projects").ByDate.Reverse }} + {{ .Title }} + {{ end }} +

+{{ end }} -{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/partials/head.html b/themes/basic/layouts/partials/head.html index ce99e77..1c565bd 100644 --- a/themes/basic/layouts/partials/head.html +++ b/themes/basic/layouts/partials/head.html @@ -1,7 +1,18 @@ + + {{ .Site.Title }} - \ No newline at end of file + + + + \ No newline at end of file diff --git a/themes/basic/layouts/partials/nav.html b/themes/basic/layouts/partials/nav.html index 7d42fde..71d35e0 100644 --- a/themes/basic/layouts/partials/nav.html +++ b/themes/basic/layouts/partials/nav.html @@ -1,6 +1,8 @@ \ No newline at end of file diff --git a/themes/basic/layouts/presentations/list.html b/themes/basic/layouts/presentations/list.html new file mode 100644 index 0000000..02f19bb --- /dev/null +++ b/themes/basic/layouts/presentations/list.html @@ -0,0 +1,16 @@ +{{ define "main" }} + +

{{ .Title }}

+ +{{ .Content }} + +
+

Gallery

+ {{ range .Pages }} + + {{ .Title }} + + {{ end }} +
+ +{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/presentations/single.html b/themes/basic/layouts/presentations/single.html new file mode 100644 index 0000000..8f4715c --- /dev/null +++ b/themes/basic/layouts/presentations/single.html @@ -0,0 +1,12 @@ +{{ define "main" }} +
+
+

Thumbs

+ Minimum vialable product gallery +
+
+

{{ .Title }}

+ {{ .Content }} +
+
+{{ end }} \ No newline at end of file diff --git a/themes/basic/layouts/projects/single.html b/themes/basic/layouts/projects/single.html new file mode 100644 index 0000000..d37f902 --- /dev/null +++ b/themes/basic/layouts/projects/single.html @@ -0,0 +1,17 @@ +{{ define "main" }} +
+
+

What else

+ +
+ +
+

{{ .Title }}

+ {{ .Content }} +
+
+{{ end }} \ No newline at end of file diff --git a/themes/basic/static/css/style.css b/themes/basic/static/css/style.css index dc009e7..693916b 100644 --- a/themes/basic/static/css/style.css +++ b/themes/basic/static/css/style.css @@ -21,4 +21,10 @@ nav > a { @media only screen and (min-width: 768px) { nav { flex-direction: row; } -} \ No newline at end of file +} + +.project-container { display: flex; } + +.project-container .project-list { width: 20%; } + +.project-container .project { flex: 1; } \ No newline at end of file diff --git a/themes/bootstrap5/layouts/_default/baseof.html b/themes/bootstrap5/layouts/_default/baseof.html index 19897ea..478215a 100644 --- a/themes/bootstrap5/layouts/_default/baseof.html +++ b/themes/bootstrap5/layouts/_default/baseof.html @@ -4,16 +4,11 @@
{{- partial "header.html" . -}} -
{{- partial "nav.html" . -}} -
-
-
- {{- block "main" . }}{{- end }} -
-
+
+ {{- block "main" . }}{{- end }} +
- {{- partial "footer.html" . -}} - + {{- partial "footer.html" . -}}