add privacy policy and imprint
This commit is contained in:
parent
2a7506271d
commit
fc4f2e91d5
|
@ -5,9 +5,9 @@ copyright = ""
|
||||||
canonifyurls = true
|
canonifyurls = true
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
footer_1 = "Dezentral: What is a cloud?"
|
footer_1 = "Decentralise: What is a cloud?"
|
||||||
footer_2 = "Impressum: Make a DNS whois"
|
footer_2 = '<a href="/imprint">Imprint: Make a DNS whois</a>'
|
||||||
footer_3 = "Datenschutz: We save nothing!"
|
footer_3 = '<a href="/privacy_policy">Privacy Policy: We save nothing!</a>'
|
||||||
|
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
name = "Home"
|
name = "Home"
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Imprint
|
||||||
|
type: hidden
|
||||||
|
---
|
||||||
|
We do not need a imprint, we are no journalistic project or have interests of commercial use.
|
||||||
|
So we do not have to published like wanted in RStV and TMG §5.
|
||||||
|
|
||||||
|
Otherwise ask for it per mail at host(at)sum7.eu
|
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
title: Privacy Policy
|
||||||
|
type: hidden
|
||||||
|
---
|
||||||
|
|
||||||
|
# Websites
|
||||||
|
We do not use external services like GoogleAnalytics or GoogleMaps.
|
||||||
|
|
||||||
|
From your Website request is only saved:
|
||||||
|
|
||||||
|
- Address Family: IPv4 or IPv6
|
||||||
|
- Requested Domain: e.g. `chat.sum7.eu`
|
||||||
|
- Duration of delivery: How long a request take time (in histogram cumulated in buckets)
|
||||||
|
|
||||||
|
We excuse us, but we think it is necessary for enhanced the delivery of your webserver.
|
||||||
|
|
||||||
|
|
||||||
|
# Chat (XMPP)
|
||||||
|
For easy use, there is Message Archiving enabled by default.
|
||||||
|
Hopefully you use OMEMO or you should disable MAM.
|
||||||
|
Otherwise your messages are stored plain on this server for other clients.
|
|
@ -2,9 +2,9 @@
|
||||||
</div>
|
</div>
|
||||||
<footer id="footer" style="color: #7A7B7C; background-color: #3A3B3C;background-image: url({{ .Site.BaseURL}}/img/texture.png),linear-gradient(to bottom, #3A3B3C, #1d1e1e); background-repeat: repeat, no-repeat; background-position: left top, left top; background-size: 100px 100px, 100% 100%;box-shadow: 0 50vh 0 50vh #1d1e1e;">
|
<footer id="footer" style="color: #7A7B7C; background-color: #3A3B3C;background-image: url({{ .Site.BaseURL}}/img/texture.png),linear-gradient(to bottom, #3A3B3C, #1d1e1e); background-repeat: repeat, no-repeat; background-position: left top, left top; background-size: 100px 100px, 100% 100%;box-shadow: 0 50vh 0 50vh #1d1e1e;">
|
||||||
<div id="footer-container">
|
<div id="footer-container">
|
||||||
{{ with .Site.Params.footer_1 }}<div class="footer-column">{{ . }}</div>{{ end }}
|
{{ with .Site.Params.footer_1 }}<div class="footer-column">{{ . | safeHTML }}</div>{{ end }}
|
||||||
{{ with .Site.Params.footer_2 }}<div class="footer-column">{{ . }}</div>{{ end }}
|
{{ with .Site.Params.footer_2 }}<div class="footer-column">{{ . | safeHTML }}</div>{{ end }}
|
||||||
{{ with .Site.Params.footer_3 }}<div class="footer-column">{{ . }}</div>{{ end }}
|
{{ with .Site.Params.footer_3 }}<div class="footer-column">{{ . | safeHTML }}</div>{{ end }}
|
||||||
<div class="clearfix"></div>
|
<div class="clearfix"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="copyright">{{ .Site.Copyright | safeHTML }}</div>
|
<div id="copyright">{{ .Site.Copyright | safeHTML }}</div>
|
||||||
|
|
|
@ -332,7 +332,8 @@ footer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: relative
|
position: relative
|
||||||
}
|
}
|
||||||
footer .menu-item a {
|
footer a,
|
||||||
|
footer a:active {
|
||||||
color: #7A7B7C;
|
color: #7A7B7C;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-weight: 300
|
font-weight: 300
|
||||||
|
@ -343,7 +344,7 @@ footer .menu-item a {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
}
|
}
|
||||||
footer .menu-item a:hover {
|
footer a:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: underline
|
text-decoration: underline
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue