-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Deployment | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
--- | ||
import { IconGithub } from "@/icons"; | ||
import { l } from "astro-i18n"; | ||
--- | ||
|
||
<div class="md:h-full bg-secondary-light"> | ||
<div class="container md:flex gap-8 items-center md:h-full"> | ||
<div>© 2024 Nils Knappmeier</div> | ||
<a class="text-primary-dark underline-offset-3 hover:underline" href="/legal">Impressum / Datenschutz</a> | ||
<div class="flex-auto" /> | ||
<a class="text-primary-dark underline-offset-3 hover:underline" href={l("/legal")}}>Impressum / Datenschutz</a> | ||
<div class="flex-auto"></div> | ||
<a href="https://github.com/nknapp/aikido-exam" title="Github repository"><IconGithub /></a> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
import DefaultLayout from "@/layouts/DefaultLayout.astro"; | ||
--- | ||
|
||
<DefaultLayout> | ||
<h1>Impress</h1> | ||
<p>Responsible for content according to (german) § 5 TMG:</p> | ||
<canvas id="impress"></canvas> | ||
<h1>Privacy / Cookies</h1> | ||
<p> | ||
This page does not use cookies to track visitors. I use <a href="https://plausible.io">plausible.io</a> to track usage. | ||
Plausible does not use cookies und and does not collect personal data. | ||
</p> | ||
<ul> | ||
<li> | ||
<a href="https://plausible.io/privacy-focused-web-analytics">Blog post</a> about privacy guidelines of Plausible.io | ||
</li> | ||
<li> | ||
<a href="https://plausible.io/aikido-exam.knappi.org/">The public tracking dashboard</a> shows the collected data. | ||
</li> | ||
</ul> | ||
|
||
<h2>GitHub Pages Service</h2> | ||
|
||
<p> | ||
This Website is hosted as a GitHub Pages website. GitHub may collect User Personal Information from visitors to this | ||
GitHub Pages website, including logs of visitor IP addresses, to comply with legal obligations, and to maintain the | ||
security and integrity of this Website and the Service. See the <a | ||
href="https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" | ||
>GitHub Privacy Statement</a | ||
> for details. | ||
</p> | ||
|
||
<script> | ||
import { createImpress } from "@/utils/impressed"; | ||
|
||
const canvas = document.getElementById("impress") as HTMLCanvasElement; | ||
createImpress(canvas); | ||
</script> | ||
</DefaultLayout> |