diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-18 08:32:04 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-18 08:32:04 -0400 |
commit | e416310ae81a1ecc648c3ae59f6f46326880e818 (patch) | |
tree | 0c5bdde0ccb1134668b487e6817b8692bb53b59b /templates | |
parent | 4f121d3a90ae2b7c79cc06df93ab25504a76892b (diff) |
peach: add `/about` section
Initial version.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/about.tmpl | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/templates/about.tmpl b/templates/about.tmpl new file mode 100644 index 0000000..950a3f4 --- /dev/null +++ b/templates/about.tmpl @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>peach - about</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="author" content="siddharth ravikumar"> + <link rel="preload" href="/static/peach.min.css?{{ .Version }}" as="style" /> + <style>@import url("/static/peach.min.css?{{ .Version }}");</style> + </head> + <body> + <div class="peach"> + <div class="root-container"> + <div class="about-container"> + <div class="header"> + <h1>peach</h1> + </div> + <div class="content"> + <p>Peach's a barebones weather service.</p> + + <p> + Forecast data and weather alerts are from + <a href="//weather.gov">weather.gov</a>. + </p> + </div> + </div> <!-- about-container end --> + + <div class="terms-container"> + <div class="header"> + <h2>terms</h2> + </div> + <div class="content"> + <p> + Peach's available for anybody to use. + </p> + + <p> + It is licensed under the + <a href="//git.ricketyspace.net/peach/tree/LICENSE">ISC license</a>. Your + use of this service indicates an implicit + agreement to the terms of this license.</p> + + <p> + Peach's source code can be found at + <a href="//ricketyspace.net/peach"> + ricketyspace.net/peach + </a>. + </p> + </div> + </div> <!-- terms-container end --> + + <div class="privacy-container"> + <div class="header"> + <h2>privacy</h2> + </div> + <div class="content"> + <p> + Your IP address and the user agent header + of your browser gets itched into an + ephemeral log when you use Peach.</p> + + <p>Peach does not use cookies.</p> + + <p>That's it.</p> + </div> + </div> <!-- privacy-container end --> + + <div class="footer-container"> + <div class="footer"> + <p>— <a href="//ricketyspace.net/contact">siddharth ravikumar</a></p> + </div> + </div> <!-- footer-container end --> + + </div> <!-- root-container end --> + </div> <!-- peach end --> + </body> +</html> |