Compare commits

...

4 Commits

Author SHA1 Message Date
d3cbce1f14 Blog post about Rhön clouds. 2025-08-02 07:37:34 +02:00
f787cc0619 Fix site to use current hermit-v2 theme.
Affects date formats.
2025-08-02 07:37:08 +02:00
8b3dd97e27 Add ORCID ID. 2025-08-02 07:08:47 +02:00
739fc8fdd4 Update hermit-v2 theme. 2025-08-02 07:08:28 +02:00
11 changed files with 55 additions and 12 deletions

View File

@ -61,10 +61,10 @@ expiryDate = ["expiryDate"]
[params]
dateform = "2 Jan 2006"
dateformShort = "2 Jan"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04 -0700"
LongDate = "2 Jan 2006"
ShortDate = "2 Jan"
NumDateShort = "2006-01-02"
NumDateLong = "2006-01-02 15:04 -0700"
description = "Daniel Kraus' personal homepage"
# images = [""]

View File

@ -69,6 +69,5 @@ This includes running a mail and an IMAP server, hosting my own
[Mastodon for Nephrology](https://neph.social)
and more. Almost all of my services are dockerized.
[sh-img]: https://api.star-history.com/svg?repos=bovender/linktitles,bovender/pubmedparser,bovender/imapcli,bovender/xltoolbox&type=Date
[sh-link]: https://www.star-history.com/#bovender/linktitles&bovender/pubmedparser&bovender/imapcli&bovender/xltoolbox&Date

View File

@ -1,12 +1,14 @@
---
title: "Impressum und Datenschutz"
date: 2024-07-31T12:42:53Z
date: 2025-08-02T07:00:00Z
draft: false
---
Dr. Daniel Kraus
Tel. (0 61 07‌) 7 5‌6 88 4‌0
Mail: <bovender@bovender.de>
{{< orcid >}}
Ladungsfähige Anschrift bei meinem Arbeitgeber: Unimedizin Mainz, Langenbeckstr.
1, 55131 Mainz. Dies ist eine rein private Homepage und in keiner Weise von
meinem Arbeitgeber beworben oder unterstützt. Meine Privatanschrift ist zu

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 KiB

View File

@ -0,0 +1,32 @@
---
title: "Clouds"
description: Clouds over Rhön Mountains area
date: 2025-08-02T07:00:00+0200
draft: false
# ShowLastmod: true
toc: false
scrolltotop: true
images: []
tags:
- photos
- landscape
- nikon
---
Cloudy skies over the [Rhön Mountains][rhoen] area in Germany.
{{< figure src="DSC_3699.jpg" caption="Nikon Z6III with Nikkor 20mm f/1.8 S" >}}
---
{{< figure src="DSC_4404.jpg" caption="Nikon Z6III with Tamron 35-150mm f/2.0-2.8">}}
---
{{< figure src="DSC_4656.jpg" caption="Nikon Z6III with Nikkor 20mm f/1.8 S" >}}
Images developed in [Darktable][]. Raw image file available
upon reasonable request. All rights reserved.
[darktable]: https://darktable.org
[rhoen]: https://en.wikipedia.org/wiki/Rh%C3%B6n_Mountains

View File

@ -9,12 +9,12 @@
{{- with .Params.categories }}
<p>{{- partial "svg.html" (dict "context" . "name" "posts_single_categories") -}}{{- range . -}}<span class="category"><a href="{{ "categories/" | absLangURL }}{{ . | urlize }}">{{.}}</a></span>{{- end }}</p>
{{- end }}
<p>{{- partial "svg.html" (dict "context" . "name" "posts_single_date") }}{{ .Date.Format .Site.Params.dateformNumTime }}
<p>{{- partial "svg.html" (dict "context" . "name" "posts_single_date") }}{{ .Date.Format .Site.Params.NumDateLong }}
{{- if and (not (eq .Page.Params.ShowLastmod nil)) (.Page.Params.ShowLastmod) -}}
{{ if and .GitInfo .Site.Params.gitUrl }}
({{- partial "svg.html" (dict "context" . "name" "posts_single_git_commit") -}}<a href="{{ .Site.Params.gitUrl -}}{{ .GitInfo.Hash }}" target="_blank" rel="noopener">{{ .GitInfo.AbbreviatedHash -}}</a> @ {{ .GitInfo.AuthorDate.Local.Format .Site.Params.dateformNum -}})
({{- partial "svg.html" (dict "context" . "name" "posts_single_git_commit") -}}<a href="{{ .Site.Params.gitUrl -}}{{ .GitInfo.Hash }}" target="_blank" rel="noopener">{{ .GitInfo.AbbreviatedHash -}}</a> @ {{ .GitInfo.AuthorDate.Local.Format .Site.Params.NumDateShort -}})
{{- else if not (eq .Lastmod .Date ) -}}
&nbsp;[{{.Site.Params.initialPublish | default "Initial Published on : "}} {{ dateFormat .Site.Params.dateformNumTime .Lastmod.Local -}}]
&nbsp;[{{.Site.Params.initialPublish | default "Initial Published on : "}} {{ dateFormat .Site.Params.NumDateLong .Lastmod.Local -}}]
{{- else -}}
{{ errorf "Lastmod is not found in Page Frontmatter or Lastmod is same as Date" }}
{{- end -}}

View File

@ -1,10 +1,10 @@
<p>
{{ partial "svg.html" (dict "context" . "name" "posts_single_date") }} {{ dateFormat .Site.Params.dateformNumTime .Page.Date.Local }}
{{ partial "svg.html" (dict "context" . "name" "posts_single_date") }} {{ dateFormat .Site.Params.NumDateLong .Page.Date.Local }}
{{ if and (not (eq .Page.Params.ShowLastmod nil)) (.Page.Params.ShowLastmod) }}
{{ if and .GitInfo .Site.Params.gitUrl }}
[{{ partial "svg.html" (dict "context" . "name" "posts_single_git_commit") }}<a href="{{ .Site.Params.gitUrl -}}{{ .Page.GitInfo.Hash }}" target="_blank" rel="noopener">{{ .Page.GitInfo.AbbreviatedHash -}}</a> @ {{ dateFormat .Site.Params.dateformNum .Page.GitInfo.AuthorDate.Local }}]
{{ else if not (eq .Page.Lastmod .Page.Date ) }}
&nbsp;[{{.Site.Params.initialPublish | default "Initial Published on : "}} {{ dateFormat .Site.Params.dateformNumTime .Page.Lastmod.Local }}]
&nbsp;[{{.Site.Params.initialPublish | default "Initial Published on : "}} {{ dateFormat .Site.Params.NumDateLong .Page.Lastmod.Local }}]
{{ else }}
{{ errorf "Lastmod is not found in Page Frontmatter or Lastmod is same as Date" }}
{{ end }}

View File

@ -0,0 +1,10 @@
<a id="cy-effective-orcid-url"
class="underline"
href="https://orcid.org/0000-0002-6351-3706"
target="orcid.widget"
rel="me noopener noreferrer" style="vertical-align: top">
<img src="https://orcid.org/sites/default/files/images/orcid_16x16.png"
style="width: 1em; display: inline"
alt="ORCID iD icon" />
https://orcid.org/0000-0002-6351-3706
</a>