contact.html (1099B)
1 <!DOCTYPE html> 2 <html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html"> 3 <head th:replace="~{header :: head}"></head> 4 <head> 5 <title>Contact - Wim Dupont</title> 6 </head> 7 <body> 8 <div class="container wrapper"> 9 <header> 10 <h1>Contact</h1> 11 <div th:insert="~{navigation}"/> 12 </header> 13 <p>I do not use any social media websites, nor do I have accounts on any of those platforms (such as Facebook, 14 LinkedIn, Twitter,...). 15 If you have any suggestions or questions - either technical or in any way related to the content on the site - 16 please send an email to <a href="mailto: wim@wimdupont.com">wim@wimdupont.com</a>.</p> 17 <p>You can use GPG to encrypt the email:</p> 18 <ul> 19 <li><a href="/contact/pubkey.gpg">Public key file</a></li> 20 <li>Fingerprint: E9B0 4E58 5758 2FD5 7E86 331D 7A78 C109 C84E ECDF</li> 21 </ul> 22 You could also run following command to import the public key:<br> 23 <b><kbd>curl -sL https://wimdupont.com/contact/pubkey.gpg | gpg --import</kbd></b><br> 24 </div> 25 </body> 26 </html>