commit 9a8b4e29899a2b11339afc8567cce56a5edcc4e8 Author: Christian Schulzendorff Date: Fri Dec 23 17:08:23 2022 +0100 Init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..057a3ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/public +*.lock \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..26ba249 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-scroll"] + path = themes/hugo-scroll + url = https://github.com/janraasch/hugo-scroll.git diff --git a/README.md b/README.md new file mode 100644 index 0000000..0e847ec --- /dev/null +++ b/README.md @@ -0,0 +1,64 @@ +# blog + +Hugo-basierter Blog mit dem Theme hugo-scroll. Der gesamte Content, liegt in disem Repository. Das Editieren erfolgt lokal, das Publishing per rsync. + +## Setup Uberspace + +Nur dieses git-Repository. Das Publishing erfolgt in das Website-Vezeichnis /home/kollegen/html/tempelgold. Der zugreifende Gitea-User muss den ssh-Key konfigurierte haben, damit git und rsync per ssh genutzt werden kann. + +## Lokales Setup + +Benötigte Tools: + +- hugo +- git +- rsync + +Es wird eine aktuelle Hugo-Version ~/bin/hugo erwartet (Standard-Version, extended wird nicht benötigt, glaube ich). +Das git-Repository auschecken. Es wird in ~/prj/kollegen/tempelgold gearbeitet. + + $ mkdir ~/prj/kollegen/tempelgold + $ cd ~/prj/kollegen + $ git clone kollegen@kollegen.uber.space:website/tempelgold.git + $ cd tempelgold + +Das Theme **hugo-scroll** ist als submodule eingebunden, also nicht Teil des repos - das Verzeichnis themes/hugo-scroll ist dementsprechend leer. Laden von hugo-scroll: + + $ git submodule init + Submodule 'themes/hugo-scroll' (https://github.com/janraasch/hugo-scroll) registered for path 'themes/hugo-scroll' + $ git submodule update + Cloning into '/home/chris/prj/kollegen/blog/themes/hugo-scroll'...Submodule path 'themes/hugo-scroll': checked out '9d458d193fee9dd35843baddd41e1ba99c29aef4' + + +## Konfiguration des Blogs + +Es gibt nur die Homepage-Beiträge. + +## Neuen Bereich erstellen + + $ hugo new posts/mynewpost.md + +## Lokales Testen + +Starten der Vorschau im lokalen Webserver: + + $ hugo server -D + (...) + Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) + Press Ctrl+C to stop + +Wird nicht automatisch aktualisiert: config.toml ändern und abspeichern. Webclient-Cache löschen. + +## Update der Website + +Hugo generiert den Content nach /public. + + $ hugo + Start building sites … + (...) + Total in 47 ms + +Das Skript startet hugo und kopiert anschließend /public in den Webcontent-Bereich auf Uberspace: + + $ ./deploy + diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..e1f65a7 --- /dev/null +++ b/config.toml @@ -0,0 +1,41 @@ +baseURL = "https://kollegen.uber.space/tempelgold" + +# This is a "one page"-website, so we do not need these kinds of pages... +disableKinds = ["section", "taxonomy", "term", "RSS", "robotsTXT"] + +defaultContentLanguage = "en" + +# The name of this wonderful theme ;-). +theme = "hugo-scroll" + +# The "title" of your website +title = "Hobby-Imker Christian Schulzendorff" + +[params] + # A "copyright"-line to be added at the bottom of the page. + # Hint: Markdown is supported in here as well. So you may e.g. add a link to your legal imprint-page. + copyright = "© Christian Schulzendorff " + + # The "description" of your website. This is used in the meta data of your generated html. + description = "Hobby-Imker in Gelnhausen Meerholz" + + # The path to your "favicon". This should be a square (at least 32px x 32px) png-file. + favicon = "images/favicon.png" + + # These "images" are used for the structured data templates. This will show up, when + # services like Twitter or Slack want to generate a preview of a link to your site. + # See https://gohugo.io/templates/internal#twitter-cards and + # https://gohugo.io/templates/internal#open-graph. + images = ["images/cover-image.jpg"] + + # Another "title" :-). This one is used as the site_name on the Hugo's internal + # opengraph structured data template. + # See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph. + title = "Tempelgold" + + # This theme will, by default, inject a design-by-line at the bottom of the page. + # You can turn it off, but we would really appreciate if you don’t :-) + # hidedesignbyline = true + + [params.meta] + keywords = "gelnhausen, meerholz, imker, honig, bienen, tempelgold" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..b74355a --- /dev/null +++ b/content/_index.md @@ -0,0 +1,6 @@ +--- +header_image: "images/homepage-banner.png" +header_headline: "Christian Schulzendorff" +header_subheadline: "Hobby-Imker" +--- + diff --git a/content/homepage/about-me.md b/content/homepage/about-me.md new file mode 100644 index 0000000..93ee050 --- /dev/null +++ b/content/homepage/about-me.md @@ -0,0 +1,11 @@ +--- +title: "Über mich" +weight: 4 +header_menu: true +--- + +![Christian Schulzendorff](images/chris.jpg) + +##### Die Natur im Blick + +Bienen halten bedeutet für mich, das Spannungsfeld zwischen freier Natur und landwirtschaftlicher Nutzung unserer Umwelt zu spüren und leibhaftig zu erfahren. diff --git a/content/homepage/contact.md b/content/homepage/contact.md new file mode 100644 index 0000000..2957d01 --- /dev/null +++ b/content/homepage/contact.md @@ -0,0 +1,15 @@ +--- +title: "Kontakt" +weight: 5 +header_menu: true +--- + +![Logo](images/logo-klein.png) + +{{}} [tempelgold@mailbox.org](mailto:tempelgold@mailbox.org) + +{{}} [+49 160 99 240 304](tel:+4916099240304) + +Gerne stehe ich Ihnen für Verkauf, Fragen und weitere Informationen zur Verfügung. + +Diese Seite ist Teil meiner Website https://kollegen.uber.space. Hier ist auch das [Impressum](https://kollegen.uber.space/impressum/) zu finden. diff --git a/content/homepage/index.md b/content/homepage/index.md new file mode 100644 index 0000000..ca03031 --- /dev/null +++ b/content/homepage/index.md @@ -0,0 +1,3 @@ +--- +headless: true +--- diff --git a/content/homepage/opener.md b/content/homepage/opener.md new file mode 100644 index 0000000..861d139 --- /dev/null +++ b/content/homepage/opener.md @@ -0,0 +1,22 @@ +--- +title: "Sortiment" +weight: 1 +header_menu: true +--- + +Mein aktuelles Honig-Angebot. + +## Honig 2022 + +Die üppige Obstblüte im Frühjahr bringt uns einen sehr hellen, cremigen Honig ins Glas. + +- Frühjahrstracht, 500 g Glas: 6,50 EUR +- Sommertracht, 500 g Glas: 6,50 EUR + +Der Honig des Sommers ist flüssiger und dunkler. Mit seiner würzigen Note des Waldes bildet er eine wunderbaren Kontrast zum Frühjahr. + +![Sortiment 2022](images/honig-2022.JPG) + +Im Mehrwegglas mit PVC-freiem Deckel. + +Nur solange Vorrat reicht. diff --git a/content/homepage/services.md b/content/homepage/services.md new file mode 100644 index 0000000..8c28527 --- /dev/null +++ b/content/homepage/services.md @@ -0,0 +1,23 @@ +--- +title: "Betriebsweise" +weight: 2 +header_menu: true +--- + +--- Im Einklang mit der Natur --- + +--- + +## Konzept + +Für die gesunde Bienenhaltung ist mir wichtig, dem Volk eine möglichst naturnahe Lebensweise zu ermöglichen. Das fängt beim Wind-geschützten Standort an, der Verzicht auf präventive Medikation und eine Monitoring bei der Varroa-Behandlung. Mit der extensiven Haltung wird ein Teil des Honigs gelassen und die Zufütterung erfolgt nach dem Wiegekonzept. Der natürliche Schwarmtrieb wird akzeptiert und zur Volkserneuerung genutzt. + +Beim Wachs bin ich derzeit noch auf Zukauf von Wachs angewiesen, es wird aber mittelfristig ein geschlossener Wachskreislauf angestrebt. Das bedeutet dann, dass die Bienen nur mit ihrem eigenen Wachs in Berührung kommen. Bis dahin kaufe ich pestizidarmen bzw. Bio-Wachs hinzu. + +## Beuten + +Die Magazinbeuten sind aus heimischer Weymouth-Kiefer und mit biologischem Firnis/Lasur der Marke Auro behandelt. Die Bienen kommen nicht mit Plastik in Kontakt sondern finden im Inneren nur Holz und Edelstahl vor. + +![Flachzarge](images/beuten.jpg) + + diff --git a/content/homepage/werdegang.md b/content/homepage/werdegang.md new file mode 100644 index 0000000..d9bbad2 --- /dev/null +++ b/content/homepage/werdegang.md @@ -0,0 +1,20 @@ +--- +title: "Werdegang" +weight: 3 +header_menu: true +--- + +2019 fing ich als Jungimker im Verein an übernahm ein Jahr später meine ersten Völker. + +### Ausbildung + +* 2020 2-tätiger Honiglehrgang beim Landesverband Hessischer Imker e.V. +* 2019-2020 Vereinsinterne Ausbildung "Bienenhaltung 2020" + +### Verein + +Beheimatet bin ich im Imkerverein 'Bienenzuchtverein Gelnhausen von 1883 und Umgebung e.V.' ([Hompage](https://bienenzuchtverein-gelnhausen.de/)). + +--- + +Ich danke den vielen Imkern bei den sonntäglichen Treffen der Bienenhirten für die Unterstützung und den intensiven Wissensaustausch. diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..f803837 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,7 @@ +#!/bin/bash +USER=kollegen +HOST=despina.uberspace.de +# the directory where your web site files should go +DIR=/home/kollegen/html/tempelgold +hugo && rsync -avz public/ ${USER}@${HOST}:${DIR} +exit 0 diff --git a/layouts/partials/custom_head.html b/layouts/partials/custom_head.html new file mode 100644 index 0000000..543ae18 --- /dev/null +++ b/layouts/partials/custom_head.html @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + +{{ if (.Params.mermaid) }} + + + {{ end }} \ No newline at end of file diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..951e60d Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/images/Tempelgold-Logo.png b/static/images/Tempelgold-Logo.png new file mode 100644 index 0000000..1efc24a Binary files /dev/null and b/static/images/Tempelgold-Logo.png differ diff --git a/static/images/apple-touch-icon.png b/static/images/apple-touch-icon.png new file mode 100644 index 0000000..6782a20 Binary files /dev/null and b/static/images/apple-touch-icon.png differ diff --git a/static/images/beuten.jpg b/static/images/beuten.jpg new file mode 100644 index 0000000..2ccc18a Binary files /dev/null and b/static/images/beuten.jpg differ diff --git a/static/images/chris.jpg b/static/images/chris.jpg new file mode 100644 index 0000000..c1cd19b Binary files /dev/null and b/static/images/chris.jpg differ diff --git a/static/images/favicon-16x16.png b/static/images/favicon-16x16.png new file mode 100644 index 0000000..281f233 Binary files /dev/null and b/static/images/favicon-16x16.png differ diff --git a/static/images/favicon-32x32.png b/static/images/favicon-32x32.png new file mode 100644 index 0000000..dc80187 Binary files /dev/null and b/static/images/favicon-32x32.png differ diff --git a/static/images/favicon.png b/static/images/favicon.png new file mode 100644 index 0000000..dc80187 Binary files /dev/null and b/static/images/favicon.png differ diff --git a/static/images/homepage-banner.png b/static/images/homepage-banner.png new file mode 100644 index 0000000..780d63f Binary files /dev/null and b/static/images/homepage-banner.png differ diff --git a/static/images/honig-2022.JPG b/static/images/honig-2022.JPG new file mode 100644 index 0000000..3467c6e Binary files /dev/null and b/static/images/honig-2022.JPG differ diff --git a/static/images/logo-klein.png b/static/images/logo-klein.png new file mode 100644 index 0000000..a9d613c Binary files /dev/null and b/static/images/logo-klein.png differ diff --git a/themes/hugo-scroll b/themes/hugo-scroll new file mode 160000 index 0000000..989db17 --- /dev/null +++ b/themes/hugo-scroll @@ -0,0 +1 @@ +Subproject commit 989db1748409e8beaf13b2b7583d45c9084d71e2