diff options
author | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
---|---|---|
committer | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 |
commit | 93858a4c34dd4007c72e915ed175bcdc24bbdadd (patch) | |
tree | 40279e7f6f521f0abc97a9f317ed500acb0d141e /html/privacy |
First fully working config and content for the site
Diffstat (limited to 'html/privacy')
-rw-r--r-- | html/privacy | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/html/privacy b/html/privacy new file mode 100644 index 0000000..f0fa28d --- /dev/null +++ b/html/privacy @@ -0,0 +1,74 @@ +<!DOCTYPE html> +<html> + <head> + <title>Privacy - Spragg Software Services Ltd.</title> + <link rel="stylesheet" href="/style/main.css"></link> + </head> + <body> + <header> + <h1>Privacy</h1> + <nav> + <ul> + <li><a href="/">Home</a></li> + <li><a href="/projects">Projects</a></li> + <li><a href="/blog">Blog</a></li> + <li class="selected"><a href="/privacy">Privacy</a></li> + <li><a href="/contact">Contact</a></li> + </ul> + </nav> + </header> + <main> + <h2>Cookies</h2> + <p>This website does not use any 3rd party analytics or advertising. + Also, no cookies are created or used by the static pages as you browse the main site. + Some parts of the website may be dynamic and need to treat your page requests together + as part of a single browsing session, or to keep track of choices you have made. + In these cases, the use of cookies falls under the "exception to the requirement to + provide information about cookies and obtain consent [... where ...] such storage or + access is strictly necessary for the provision of an information society service + requested by the subscriber or user." of the EC Directive on Privacy and Electronic + Communications. + See the + <a href="https://ico.org.uk/media/for-organisations/documents/1545/cookies_guidance.pdf">ICO Guidance</a> + on the subject for more information.</p> + + <h2>Requested information</h2> + <p>At times, this website may host various applications, which may request information from you. + The information requested should either be optional, or be necessary for the operation + of the specific application. + In each case, the individual application should link to its own privacy policy, + explaining what information is being requested, and how it will be used.</p> + + <h2>Logs</h2> + <p>The website saves logs of page requests, including the IP address of the computer which made + each request, and any + <a href="https://en.wikipedia.org/wiki/Query_string">query string</a> parameters that + might have been part of the URL requested. + These logs are saved for monitoring and troubleshooting purposes, and are deleted after + 30 days. + The logs may be processed and analyzed for analytics purposes, with the processed + results stored for longer, but any potentially personal information (such as IP address + or query string parameters) is stripped from these results.</p> + + <h2>Data locality</h2> + <p>All data collected on this site is stored and processed exclusively in the UK. + However, data that is made publically available from this site over the internet may be + accessed from anywhere in the world. + You should be aware that sending information over the internet from one computer in the + UK to another computer in the UK, may be routed outside of the UK in transit, as a + fundamental consequence of how internet routing works. + However, this site endeavours to use end-to-end encryption wherever possible, to ensure + the privacy of any data sent over the internet.</p> + + <h2>Further information</h2> + <p>For further information, email + <a href="mailto:webmaster@spragg-ssl.co.uk">webmaster@spragg-ssl.co.uk</a>.</p> + </main> + <footer> + <hr /> + <p>Spragg Software Services Ltd is registered in England, No. 11248242. + Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ. + VAT reg No. 295343283.</p> + </footer> + </body> +</html> |