feat: Add downloadable PDF for Privacy Policy
This commit is contained in:
BIN
src/_docs/_privacy-policy.pdf
Normal file
BIN
src/_docs/_privacy-policy.pdf
Normal file
Binary file not shown.
@@ -13,12 +13,14 @@
|
||||
<link rel="stylesheet" href="/styles/header-footer.css">
|
||||
<link rel="stylesheet" href="{{ stylesheet }}">
|
||||
|
||||
|
||||
{% if hCAPTCHA %}
|
||||
<script src="{{ hCAPTCHA }}" async defer></script>
|
||||
{% endif %}
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- <a href="https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/">Free SVG Backgrounds and Patterns by SVGBackgrounds.com</a> -->
|
||||
|
||||
{% include "header.html" %}
|
||||
|
||||
@@ -30,8 +32,6 @@
|
||||
|
||||
{% include "footer.html" %}
|
||||
|
||||
<!-- <a href="https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/">Free SVG Backgrounds and Patterns by SVGBackgrounds.com</a> -->
|
||||
|
||||
{% if pageScripts %}
|
||||
{% for script in pageScripts %}
|
||||
<script src="{{ script }}"></script>
|
||||
|
@@ -2,12 +2,12 @@
|
||||
layout: base.njk
|
||||
metaDesc: "Your privacy is my priority. This policy explains how I securely handle your contact information, what I use it for, and your rights to access or delete your data."
|
||||
title: "Derek L. Seitz - Privacy Policy"
|
||||
stylesheet: /styles/privacy.css
|
||||
stylesheet: "/styles/privacy.css"
|
||||
isLandingPage: false
|
||||
---
|
||||
|
||||
<div class="module">
|
||||
<h1>Privacy Policy</h1>
|
||||
<h1>Privacy Policy - dlseitz.dev</h1>
|
||||
|
||||
<strong>Last updated: August 25, 2025</strong>
|
||||
|
||||
@@ -83,7 +83,7 @@ isLandingPage: false
|
||||
</section>
|
||||
<section id="data-retention">
|
||||
<h2>How Long I Keep Your Information</h2>
|
||||
<p>I will only keep your personal information for as long as is necessary for the purposes described in this Privacy Policy. No purpose in this notice will require me to keep your personal information for longer than 1 year.</p>
|
||||
<p>I will only keep your personal information for as long as is necessary for the purposes described in this Privacy Policy. No purpose in this notice will require me to keep your personal information for longer than 1 year, unless required for legal purposes.</p>
|
||||
<p>When I no longer have a legitimate reason to process your data, I will delete it or securely store it until it can be deleted.</p>
|
||||
</section>
|
||||
<section id="data-protection">
|
||||
@@ -121,3 +121,4 @@ isLandingPage: false
|
||||
</section>
|
||||
<a class="back-to-top" href="./#top" aria-label="Back to top of page">Back to Top</a>
|
||||
</div>
|
||||
<a class="download" href="/_docs/_privacy-policy.pdf" download>Download Privacy Policy</a>
|
||||
|
@@ -124,3 +124,22 @@ hr {
|
||||
color: var(--primary-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.download {
|
||||
display: inline-block;
|
||||
background: var(--secondary-color);
|
||||
border: solid 1px var(--medium-gray-color);
|
||||
border-radius: 10px;
|
||||
padding: 5px 20px;
|
||||
box-shadow: var(--shadow-medium);
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
color: var(--light-gray-color);
|
||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.download:hover {
|
||||
background-color: var(--primary-color);
|
||||
box-shadow: var(--shadow-large);
|
||||
color: var(--light-gray-color);
|
||||
}
|
Reference in New Issue
Block a user