A lightweight DIY alternative to services like Linktree and many.link.
at main 84 lines 3.7 kB view raw
1<!DOCTYPE html> 2 3<!-- 4 To change the theme, change the class on the html tag below to one of: 5 - theme-auto: Automatically switches based on user's system preferences 6 - theme-light: Forces light theme 7 - theme-dark: Forces dark theme 8--> 9 10<html class="theme-auto" lang="en"> <!-- Update `class="theme-auto"` with your preference --> 11 12 <head> 13 <meta charset="utf-8"> 14 <meta name="viewport" content="width=device-width, initial-scale=1"> 15 16 <!-- Page Title - Change this to your name/brand (50-60 characters recommended) --> 17 <title>Privacy Policy | LittleLink</title> 18 <link rel="icon" type="image/x-icon" href="/images/avatar.png"> <!-- Update this with your own favicon --> 19 20 21 <!-- Meta Description - Write a description (150-160 characters recommended) --> 22 <meta name="description" content="Privacy policy and data collection information for LittleLink"> 23 <meta name="robots" content="noindex"> <!-- Since this is a utility page --> 24 25 <!-- Stylesheets --> 26 <link rel="stylesheet" href="css/reset.css"> 27 <link rel="stylesheet" href="css/style.css"> 28 <link rel="stylesheet" href="css/brands.css"> 29 30 </head> 31 32 <body> 33 <div class="container-left" role="main"> 34 <div class="column"> 35 <nav role="navigation"> 36 <a href="index.html" aria-label="Back to homepage">← Back to main page</a> 37 </nav> 38 39 <h1>Privacy Overview</h1> 40 41 <section aria-labelledby="analytics-heading"> 42 <h2 id="analytics-heading">Analytics</h2> 43 <p>The services contained in this section enable the Owner to monitor and analyze web traffic and can be used to keep track of User behavior.</p> 44 45 <h3>Example LLC</h3> 46 <ul role="list"> 47 <li>Personal Data: various types of Data as specified in the privacy policy of the service</li> 48 <li><a href="https://example.com/privacy/" target="_blank" rel="noopener">Privacy Policy</a></li> 49 </ul> 50 </section> 51 52 <section aria-labelledby="external-content-heading"> 53 <h2 id="external-content-heading">External Content</h2> 54 <p>This type of service allows you to view content hosted on external platforms directly from the pages of this website and interact with them.</p> 55 <p>This type of service might still collect web traffic data for the pages where the service is installed, even when Users do not use it.</p> 56 57 <h3>Example LLC</h3> 58 <ul role="list"> 59 <li>Personal Data: Usage Data; various types of Data as specified in the privacy policy of the service</li> 60 <li><a href="https://example.com/privacy/" target="_blank" rel="noopener">Privacy Policy</a></li> 61 </ul> 62 </section> 63 64 <section aria-labelledby="hosting-heading"> 65 <h2 id="hosting-heading">Hosting and Infrastructure</h2> 66 <p>This type of service has the purpose of hosting Data and files that enable this website to exist.</p> 67 <p>Some services among those listed below, if any, may work through geographically distributed servers, making it difficult to determine the actual location where the Personal Data are stored.</p> 68 69 <h3>Example LLC</h3> 70 <ul role="list"> 71 <li>Personal Data: various types of Data as specified in the privacy policy of the service</li> 72 <li><a href="https://example.com/privacy" target="_blank" rel="noopener">Privacy Policy</a></li> 73 </ul> 74 </section> 75 76 <footer> 77 <p>Build your own by forking <a href="https://littlelink.io" target="_blank" rel="noopener">LittleLink.</a></p> 78 </footer> 79 </div> 80 </div> 81 82 </body> 83 84</html>