add legal notice

This commit is contained in:
Akumatic 2024-09-12 00:36:55 +02:00
parent 2d29261576
commit 1b1dc9fb24
4 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,39 @@
footer.site-footer {
padding: 20px 0 var(--section-separation) 0;
font-size: 1.4rem;
line-height: 1.75;
&:before {
content: "";
display: block;
height: 3px;
width: 50px;
background: var(--body-text-color);
margin-bottom: 20px;
}
.copyright {
color: var(--accent-color);
font-weight: bold;
margin-bottom: 5px;
}
.legal {
color: var(--body-text-color);
font-weight: normal;
font-size: 1.4rem;
a {
color: var(--body-text-color);
}
}
.powerby {
color: var(--body-text-color);
font-weight: normal;
font-size: 1.2rem;
a {
color: var(--body-text-color);
}
}
}

View File

@ -0,0 +1,16 @@
---
title: Impressum
slug: legal
comments: false
license: false
toc: false
readingTime: false
---
**Sven Dyhr** \
Luchsweg 11 \
73230 Kirchheim unter Teck \
Deutschland
**Kontakt** \
E-Mail: [contact@akumatic.eu](mailto:contact@akumatic.eu)

View File

@ -0,0 +1,16 @@
---
title: Legal Notice
slug: legal
comments: false
license: false
toc: false
readingTime: false
---
**Sven Dyhr** \
Luchsweg 11 \
73230 Kirchheim unter Teck \
Germany
**Contact** \
E-Mail: [contact@akumatic.eu](mailto:contact@akumatic.eu)

View File

@ -0,0 +1,31 @@
{{- $ThemeVersion := "3.27.0" -}}
<footer class="site-footer">
<section class="copyright">
&copy;
{{ if and (.Site.Params.footer.since) (ne .Site.Params.footer.since (int (now.Format "2006"))) }}
{{ .Site.Params.footer.since }} -
{{ end }}
{{ now.Format "2006" }} {{ default .Site.Title .Site.Copyright }}
</section>
<section class="legal">
{{ if eq "de" $.Lang }}
{{ `<a href="/de/legal" target="_blank" rel="noopener">Impressum</a>` | safeHTML }}
{{ else }}
{{ `<a href="/legal" target="_blank" rel="noopener">Legal Notice</a>` | safeHTML }}
{{ end }}
</section>
<section class="powerby">
{{ with .Site.Params.footer.customText }}
{{ . | safeHTML }} <br/>
{{ end }}
{{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
{{- $Theme := printf `<b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="%s">Stack</a></b>` $ThemeVersion -}}
{{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}
{{ T "footer.builtWith" (dict "Generator" $Generator) | safeHTML }} -
{{ T "footer.designedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
</section>
</footer>