-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TelemetryDeck as the new website analytics
- Loading branch information
1 parent
3b7b5d4
commit 93cee6c
Showing
5 changed files
with
101 additions
and
148 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1721145354948 | ||
"lastUpdateCheck": 1733336855591 | ||
} | ||
} |
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
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,60 +1,70 @@ | ||
--- | ||
import { format } from "date-fns"; | ||
import '@assets/styles/global.scss'; | ||
import Footer from '@components/Footer/Footer'; | ||
const { title, heading, description, date, url, image } = Astro.props; | ||
const openGraphImage = image == "" ? "https://killedby.tech/images/og.png" : image; | ||
const disableTracking = import.meta.env.DEV; | ||
const published_time = date + "T00:00:00.000+01:00"; | ||
import { format } from "date-fns"; | ||
import "@assets/styles/global.scss"; | ||
import Footer from "@components/Footer/Footer"; | ||
const { title, heading, description, date, url, image } = Astro.props; | ||
const openGraphImage = | ||
image == "" ? "https://killedby.tech/images/og.png" : image; | ||
const published_time = date + "T00:00:00.000+01:00"; | ||
--- | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width"> | ||
<meta name="description" content={ description }> | ||
<meta property="og:url" content={ url }> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content={ title }> | ||
<meta property="og:description" content={ description }> | ||
<meta property="og:image" content={ openGraphImage }> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta property="twitter:domain" content="killedby.tech"> | ||
<meta property="twitter:url" content={ url }> | ||
<meta name="twitter:title" content={ title }> | ||
<meta name="twitter:description" content={ description }> | ||
<meta name="twitter:image" content={ openGraphImage }> | ||
<meta property="article:published_time" content={published_time}> | ||
<meta property="article:section" content="Technology"> | ||
<meta property="article:author" content="Edvin Lindén"> | ||
<link rel="icon" href="/images/favicon.svg" type="image/svg+xml"> | ||
<title>{ title }</title> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
<div style="display:flex; justify-content:space-between; align-items: center;"> | ||
<h1 style="margin-bottom:0px;">Killed by *</h1> | ||
<a href="/">Back to the graveyard ↩</a> | ||
</div> | ||
<h2 class="ingress">A graveyard for discontinued products from Apple, Google and Microsoft</h2> | ||
|
||
<ol class="breadcrumbs" style="margin-top:3rem; margin-bottom: 6rem;"> | ||
<li> | ||
<a href="/articles/">Articles</a> | ||
<div class="chevron" /> | ||
</li> | ||
<li> | ||
{title} | ||
</li> | ||
</ol> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="description" content={description} /> | ||
<meta property="og:url" content={url} /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="og:title" content={title} /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content={openGraphImage} /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:domain" content="killedby.tech" /> | ||
<meta property="twitter:url" content={url} /> | ||
<meta name="twitter:title" content={title} /> | ||
<meta name="twitter:description" content={description} /> | ||
<meta name="twitter:image" content={openGraphImage} /> | ||
<meta property="article:published_time" content={published_time} /> | ||
<meta property="article:section" content="Technology" /> | ||
<meta property="article:author" content="Edvin Lindén" /> | ||
<link rel="icon" href="/images/favicon.svg" type="image/svg+xml" /> | ||
<title>{title}</title> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
<div | ||
style="display:flex; justify-content:space-between; align-items: center;" | ||
> | ||
<h1 style="margin-bottom:0px;">Killed by *</h1> | ||
<a href="/">Back to the graveyard ↩</a> | ||
</div> | ||
<h2 class="ingress"> | ||
A graveyard for discontinued products from Apple, Google and | ||
Microsoft | ||
</h2> | ||
|
||
</div> | ||
<article> | ||
<h1>{heading}</h1> | ||
<p class="metaText" title={date}>{format(new Date(date), "PPP")}</p> | ||
<ol | ||
class="breadcrumbs" | ||
style="margin-top:3rem; margin-bottom: 6rem;" | ||
> | ||
<li> | ||
<a href="/articles/">Articles</a> | ||
<div class="chevron"></div> | ||
</li> | ||
<li> | ||
{title} | ||
</li> | ||
</ol> | ||
</div> | ||
<article> | ||
<h1>{heading}</h1> | ||
<p class="metaText" title={date}>{format(new Date(date), "PPP")}</p> | ||
|
||
<slot /> | ||
</article> | ||
<Footer /> | ||
{disableTracking ? null : <script src="https://cdn.usefathom.com/script.js" data-site="SNZPDDNM" defer></script>} | ||
</body> | ||
</html> | ||
<slot /> | ||
</article> | ||
<Footer /> | ||
<script | ||
src="https://cdn.telemetrydeck.com/websdk/telemetrydeck.min.js" | ||
data-app-id="C6B4A345-3CE8-4715-B3A7-8F3C093BA4E3"></script> | ||
</body> | ||
</html> |
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,19 +1,38 @@ | ||
--- | ||
import Page from '@layouts/page.astro'; | ||
import Navigation from '@components/Navigation/Navigation'; | ||
import Page from "@layouts/page.astro"; | ||
import Navigation from "@components/Navigation/Navigation"; | ||
--- | ||
|
||
<Page | ||
title="Privacy" | ||
description="Privacy policy for Killed by, a free and open source list of discontinued products and services from companies like Google, Apple and Microsoft." | ||
url="https://killedby.tech/privacy/" | ||
title="Privacy" | ||
description="Privacy policy for Killed by, a free and open source list of discontinued products and services from companies like Google, Apple and Microsoft." | ||
url="https://killedby.tech/privacy/" | ||
> | ||
<h1>Killed by *</h1> | ||
<Navigation /> | ||
<h2>Privacy</h2> | ||
<p>I want to process as little personal information as possible when you use my website. That's why I've chosen Fathom Analytics for my website analytics, which doesn't use cookies and complies with the GDPR, ePrivacy (including PECR), COPPA and CCPA.</p> | ||
<p>Using this privacy-friendly website analytics software, your IP address is only briefly processed, and I have no way of identifying you. As per the CCPA, your personal information is de-identified. You can read more about this on <a href="https://usefathom.com/compliance" target="_blank" rel="noopener noreferrer">Fathom Analytics' website</a>.</p> | ||
<p>The purpose of me using this software is to understand my website traffic in the most privacy-friendly way possible so that I can continually improve my website. The lawful basis as per the GDPR is "f); where our legitimate interests are to improve our website and business continually." As per the explanation, no personal data is stored over time.</p> | ||
<h1>Killed by *</h1> | ||
<Navigation /> | ||
<h2>Privacy</h2> | ||
<p> | ||
I want to process as little personal information as possible when you | ||
use my website. That's why I've chosen TelemetryDeck for my website | ||
analytics. | ||
</p> | ||
<p> | ||
The purpose of me using this software is to understand my website | ||
traffic in the most privacy-friendly way possible so that I can | ||
continually improve my website. The lawful basis as per the GDPR is "f); | ||
where our legitimate interests are to improve our website and business | ||
continually." As per the explanation, no personal data is stored over | ||
time. | ||
</p> | ||
<p> | ||
TelemetryDeck <mark | ||
>does not collect any personally identifiable information</mark | ||
> and <mark>does not use cookies</mark>. You can read more about | ||
TelemetryDeck’s privacy policy at | ||
<a | ||
href="https://telemetrydeck.com/privacy" | ||
title="TelemetryDeck - Privacy Policy" | ||
target="_blank">https://telemetrydeck.com/privacy</a | ||
> | ||
</p> | ||
</Page> | ||
|
||
|