mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web/about/privacy: don't show plausible info if it's disabled
This commit is contained in:
parent
59b6cbd8d4
commit
aa0991eee4
1 changed files with 22 additions and 19 deletions
|
@ -1,4 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import env from "$lib/env";
|
||||||
import { t } from "$lib/i18n/translations";
|
import { t } from "$lib/i18n/translations";
|
||||||
import OuterLink from "$components/misc/OuterLink.svelte";
|
import OuterLink from "$components/misc/OuterLink.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
@ -38,28 +39,30 @@
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="plausible">
|
{#if env.PLAUSIBLE_ENABLED}
|
||||||
<h3>anonymous traffic analytics</h3>
|
<section id="plausible">
|
||||||
<p>
|
<h3>anonymous traffic analytics</h3>
|
||||||
for sake of privacy, we use
|
<p>
|
||||||
<OuterLink href="https://plausible.io/"> plausible's anonymous traffic analytics</OuterLink>
|
for sake of privacy, we use
|
||||||
to get an approximate number of active cobalt users. no identifiable information about you or your requests is ever stored. all data is anonymized and aggregated. the plausible instance we use is hosted & managed by us.
|
<OuterLink href="https://plausible.io/"> plausible's anonymous traffic analytics</OuterLink>
|
||||||
</p>
|
to get an approximate number of active cobalt users. no identifiable information about you or your requests is ever stored. all data is anonymized and aggregated. the plausible instance we use is hosted & managed by us.
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
plausible doesn't use cookies and is fully compliant with GDPR, CCPA, and PECR.
|
plausible doesn't use cookies and is fully compliant with GDPR, CCPA, and PECR.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<OuterLink href="https://plausible.io/privacy-focused-web-analytics">
|
<OuterLink href="https://plausible.io/privacy-focused-web-analytics">
|
||||||
{$t("settings.privacy.analytics.learnmore")}
|
{$t("settings.privacy.analytics.learnmore")}
|
||||||
</OuterLink>
|
</OuterLink>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
if you wish to opt out of anonymous analytics, you can do it in <a href="/settings/privacy#analytics">privacy settings</a>.
|
if you wish to opt out of anonymous analytics, you can do it in <a href="/settings/privacy#analytics">privacy settings</a>.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
{/if}
|
||||||
|
|
||||||
<section id="cloudflare">
|
<section id="cloudflare">
|
||||||
<h3>web privacy & security</h3>
|
<h3>web privacy & security</h3>
|
||||||
|
|
Loading…
Reference in a new issue