mirror of
https://github.com/safing/web
synced 2025-04-18 18:09:09 +00:00
46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
---
|
|
layout: page
|
|
title: Contact
|
|
heading: Contact
|
|
subheading: Contact us, we'd like to hear from you!
|
|
exclude_community_snippet: true
|
|
---
|
|
<div class="ui container">
|
|
<div class="contact-text">
|
|
You can reach us at <span class="contact-email">@</span>.<br>
|
|
The Safing ICS Technologies GmbH is the legal entity behind Safing and was founded in 2017
|
|
|
|
<div class="padding-top-40">
|
|
<i class="map marker alternate icon"></i>We are located in Austria.
|
|
</div>
|
|
</div>
|
|
</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>
|