1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-17 01:19:08 +00:00

Refresh contacts page

as discussed internally, now being in accordance and a better supplement to the new terms
This commit is contained in:
davegson 2020-05-15 16:52:24 +02:00
parent 141932f923
commit d2af9f959a
4 changed files with 40 additions and 71 deletions

View file

@ -89,12 +89,18 @@
<div class="flex-1">
<p class="text-white text-xl md:mb-6">Legal</p>
<ul class="list-reset mb-6">
<li class="mt-2 inline-block mr-2 md:block md:mr-0">
<a href="{{ site.contact_url }}" class="no-underline hover:opacity-100 opacity-50 text-white transition duration-150 ease-in-out">Contact & Notice</a>
</li>
<li class="mt-2 inline-block mr-2 md:block md:mr-0">
<a href="{{ site.terms_url }}" class="no-underline hover:opacity-100 opacity-50 text-white transition duration-150 ease-in-out">Terms of Service</a>
</li>
<li class="mt-2 inline-block mr-2 md:block md:mr-0">
<a href="{{ site.privacy_url }}" class="no-underline hover:opacity-100 opacity-50 text-white transition duration-150 ease-in-out">Privacy Policy</a>
</li>
<li class="mt-2 inline-block mr-2 md:block md:mr-0">
<a href="{{ site.github_url }}/web/blob/master/LICENSE" class="no-underline hover:opacity-100 opacity-50 text-white transition duration-150 ease-in-out">License</a>
</li>
</ul>
</div>
</div>

View file

@ -2,7 +2,7 @@
layout: page
---
<section id="page-container" class="{{ layout.container_class }}">
<section id="page-container" class="{{ layout.container_class }} {{ page.container_class }}">
<div class="items-center h-full">
<div class="container mx-auto px-8 sm:px-0 flex">
<div class="max-w-screen-lg mx-auto px-4 sm:px-6 lg:flex">

View file

@ -5,6 +5,16 @@
padding-top: 16rem;
padding-bottom: 6rem;
}
&.imprint {
h4 {
padding-top: 2rem;
}
p {
padding: .5rem 0;
}
}
}
#page-container content {

View file

@ -1,81 +1,34 @@
---
layout: page
layout: page_container
title: Contact
heading: Contact
container_class: imprint
---
<div class="contact-text">
<h4>We'd like to hear from you: <span class="contact-email">@</span>.</h4>
</div>
<h4>We'd like to hear from you!</h4>
<div class="imprint">
<h4>Legal</h4>
<p>Just mail us <a href="mailto:hello@safing.io">hello@safing.io</a></p>
<p>
Safing ICS Technologies GmbH<br>
Wassergasse 16/18, 2500 Baden<br>
<i class="map marker alternate icon"></i> Austria
</p>
<h4>Impressum - Legal Disclosure</h4>
<p>
VAT-Number: ATU71837747<br>
Registered at the commercial registry<br>
court in Wr. Neustadt with ID FN464654s
</p>
<p>
Safing ICS Technologies GmbH<br>
Hauptplatz 17/17, 2500 Baden<br>
<i class="map marker alternate icon"></i> Austria
</p>
<p>
Member of <a href="https://www.wko.at/">The Austrian Federal Economic Chamber</a>.<br>
Bound by the <a href="https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=10007517">Austrian Industrial Code</a>.
</p>
<p>
VAT-Number: ATU71837747<br>
Registered at the commercial registry<br>
court in Wr. Neustadt with ID FN464654s
</p>
<p>
Customers may issue complaints directly at the addresses listed above,<br>
or via the <a href="https://ec.europa.eu/odr">European Dispute Settlement Body</a>.
</p>
<p>
Member of <a href="https://www.wko.at/">The Austrian Federal Economic Chamber</a>.<br>
Bound by the <a href="https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=10007517">Austrian Industrial Code</a>.
</p>
<h4>License & Trademarks</h4>
<p>
This wesbite is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.<br>
Parts of it were taken from https://www.mozilla.org/en-US/foundation/licensing/.
</p>
<p>
The names "Safing", "Portmaster", "Gate17" and their logos are<br>
trademarks owned by Safing ICS Technologies GmbH (Austria).
</p>
<p>
Although our code is free, it is very important that we strictly enforce our trademark rights, in order to be able to protect our users against people who use the marks to commit fraud. This means that, while you have considerable freedom to redistribute and modify our software, there are tight restrictions on your ability to use our names and logos in ways which fall in the domain of trademark law, even when built into binaries that we provide.
</p>
</div>
<div class="contact-image" style="margin-bottom: -6px;">
<img src="{{ site.assets_url }}img/contact_img.jpg">
</div>
<script type="text/javascript">
// email de/obfuscation
function debfus(s) {
var n = 0
var r = ""
for( var i = 0; i < s.length; i++)
{
n = s.charCodeAt( i )
if( n >= 8364 )
{
n = 128
}
r += String.fromCharCode( n - 1 )
}
return r
}
document.addEventListener('DOMContentLoaded', function () {
var elements = document.getElementsByClassName("contact-email")
var email = debfus('{{ site.emailobfuscated }}')
for (var i=0, len=elements.length; i<len; i++) {
elements[i].innerHTML = email
}
})
</script>
<p>
Customers may issue complaints directly at the addresses listed above,<br>
or via the <a href="https://ec.europa.eu/odr">European Dispute Settlement Body</a>.
</p>