| 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8" /> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | <meta name="theme-color" content="#ffffff" /> |
| 7 | <link rel="stylesheet" href="/static/styles.css" /> |
| 8 | <title>Privacy — Feeds</title> |
| 9 | <meta name="description" content="Privacy policy for Feeds" /> |
| 10 | <link rel="icon" type="image/x-icon" href="/static/favicon.ico" /> |
| 11 | <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png" /> |
| 12 | <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png" /> |
| 13 | <link rel="apple-touch-icon" href="/static/apple-touch-icon.png" /> |
| 14 | <link rel="manifest" href="/static/site.webmanifest" /> |
| 15 | </head> |
| 16 | <body> |
| 17 | <div class="header"> |
| 18 | <a href="/" class="logo"><h1>Feeds</h1></a> |
| 19 | </div> |
| 20 | |
| 21 | |
| 22 | <div class="about"> |
| 23 | <h2>Privacy</h2> |
| 24 | <p>This app does not use any cookies, trackers, analytics, or observation. It's server side rendered on Railway that only records VPS system load (CPU, Memory, Number of Requests, Ingres/egres). Feeds is free and MIT open sourced software.</p> |
| 25 | </div> |
| 26 | |
| 27 | <a href="/" class="btn">← back</a> |
| 28 | |
| 29 | <footer class="footer"> |
| 30 | <a href="https://github.com/stevedylandev/feeds" target="_blank" rel="noopener noreferrer">source</a> |
| 31 | <a href="/privacy">privacy</a> |
| 32 | <a href="https://stevedylan.dev" target="_blank" rel="noopener noreferrer">by steve</a> |
| 33 | </footer> |
| 34 | </body> |
| 35 | </html> |