Footer linking

ref #46
This commit is contained in:
Philipp Dormann 2021-01-29 19:07:46 +01:00
parent 5741cbe756
commit 945963db32
3 changed files with 8 additions and 0 deletions

View File

@ -31,5 +31,9 @@
target="_blank"
rel="noopener, noreferrer"
href="https://git.odit.services/lfk/frontend/src/tag/{releaseinfo}">{releaseinfo}</a>
-
<a class="underline" href="/privacy">{$_('privacy')}</a>
-
<a class="underline" href="/imprint">{$_('imprint')}</a>
</p>
</footer>

View File

@ -2,6 +2,7 @@
import { _, getLocaleFromNavigator } from "svelte-i18n";
import * as css from "./simple.css";
import marked from "marked";
import Footer from "./Footer.svelte";
let html = "";
async function load() {
let md = await fetch("/imprint_" + getLocaleFromNavigator() + ".md");
@ -41,3 +42,4 @@
{/await}
</div>
</div>
<Footer />

View File

@ -2,6 +2,7 @@
import { _, getLocaleFromNavigator } from "svelte-i18n";
import * as css from "./simple.css";
import marked from "marked";
import Footer from "./Footer.svelte";
let html = "";
async function load() {
let md = await fetch("/privacy_" + getLocaleFromNavigator() + ".md");
@ -41,3 +42,4 @@
{/await}
</div>
</div>
<Footer />