@functionalcms/svelte-components 2.12.14 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,15 +12,15 @@ import { title, suffix } from "../../stores/title";
|
|
|
12
12
|
import { metaDescription, metaKeywords } from "../../stores/meta";
|
|
13
13
|
export let robots = "index, follow";
|
|
14
14
|
export let headerIsSticky = false;
|
|
15
|
+
export let tracker = "";
|
|
15
16
|
$:
|
|
16
17
|
headerCss = headerIsSticky ? "sticky" : "";
|
|
17
18
|
</script>
|
|
18
19
|
|
|
19
20
|
<svelte:head>
|
|
20
|
-
<script
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
src="//gc.zgo.at/count.js"></script>
|
|
21
|
+
<script data-goatcounter="https://{tracker}.goatcounter.com/count"
|
|
22
|
+
async src="//gc.zgo.at/count.js"></script>
|
|
23
|
+
<link rel="canonical" href="{window.location.href}">
|
|
24
24
|
|
|
25
25
|
<title>{$title}{$suffix}</title>
|
|
26
26
|
<meta name="og:title" property="og:title" content="{$title}{$suffix}" />
|
|
@@ -54,5 +54,5 @@ $:
|
|
|
54
54
|
</footer>
|
|
55
55
|
{/if}
|
|
56
56
|
<noscript>
|
|
57
|
-
<img src="https://
|
|
57
|
+
<img src="https://{tracker}.goatcounter.com/count?p=/{$page.url.pathname}" alt="">
|
|
58
58
|
</noscript>
|