index — crispy-website @ master

My personal homepage (very crispy)

templates/privacy.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
<!doctype html>
<html lang="en">
    <head>
        <title>Privacy policy</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="icon" type="image/png" href="../static/images/banan_icon.png" />
        <link rel="stylesheet" href="../static/css/global.css" />
        <link rel="stylesheet" href="../static/css/center.css" />
    </head>
    <body>
        <div>
            <h1>Privacy Policy</h1>
            <p>
            This website does not have any tracking or advanced analytics mechanisms. There are no cookies or trackers.
            </p>
            <p>
            By default the only logging is that of each request's path and time. There is no further context like the requesting IP address or user agent.<br>
             Requests to the static paths are not logged, so no latency profiling can be done there. More on the specific logging can be read in the source code.
            </p>
            <h2>Temporary advanced logging</h2>
            <p>
            If ever required for reasons like too high traffic, the right is reserved to enable logging on the reverse proxy to find out about problematic addresses/address ranges or user agents. By default such more precise logging is <b>disabled</b> and will only ever be enabled if absolutely necessary for a limited time. If ever used, traffic will only be analyzed for operational purposes under human supervision. Additionally if such temorary logging is enabled, a banner will appear at the top of the index page, telling users about it.
            </p>
            <h2>Exceptions for external content</h2>
            <p>
            There may be assets (like the 88x31 buttons) loaded from external sites. I cannot guarantee the absence of logging on their end. However I make it a point to only load the assets without further scripts or the like.
            </p>
            <h2>Policy updates</h2>
            <p>
            This policy can be updated if new requirements ever emerge. In such cases a notice will be displayed at the top of the index page for the 30 days prior to the change.
            </p>
        </div>
    </body>