diff options
author | Adam Stück <adam@adast.dk> | 2024-08-09 12:40:33 +0200 |
---|---|---|
committer | Adam Stück <adam@adast.dk> | 2024-08-09 12:40:33 +0200 |
commit | fbcf873c55862b4c16234acd3a681fefad5be0ca (patch) | |
tree | fd0658bb5dcd8cd3a180207022c0cc4989c583ed | |
parent | e20f135bcf0719a2ab2679cc918b8a5874279e57 (diff) |
add /contact
-rw-r--r-- | .build.yml | 2 | ||||
-rw-r--r-- | footer.html | 1 | ||||
-rw-r--r-- | pages/contact.md | 23 |
3 files changed, 25 insertions, 1 deletions
@@ -21,5 +21,5 @@ tasks: tar -C build -cvz . > ../site.tar.gz - upload: | sshopts="ssh -o StrictHostKeyChecking=no" - rsync --rsh="$sshopts" -ruz adast.dk/build/ $deploy:/var/www/adast.dk + rsync --rsh="$sshopts" -ruz --delete adast.dk/build/ $deploy:/var/www/adast.dk hut pages publish -d $mirror site.tar.gz diff --git a/footer.html b/footer.html index 8d03441..301a703 100644 --- a/footer.html +++ b/footer.html @@ -8,6 +8,7 @@ <li><a href="/uses">Uses</a></li> <li><a href="/resume">Resume</a></li> <li><a href="/now">Now</a></li> + <li><a href="/contact">Contact</a></li> <li><a href="/donate">Donate</a></li> <li><a href="#top">↑ Top of the page</a></li> </ul> diff --git a/pages/contact.md b/pages/contact.md new file mode 100644 index 0000000..4935e7c --- /dev/null +++ b/pages/contact.md @@ -0,0 +1,23 @@ +# Contact + +<style> +dl { + display: grid; + grid-template-columns: auto 1fr; + line-height: 2; +} +</style> + +<dl> + <dt><b>email</b></dt> + <dd><a href="mailto:adam@adast.dk">adam@adast.dk</a></dd> + <dt><b>xmpp</b></dt> + <dd><a href="xmpp:adam@adast.dk">adam@adast.dk</a></dd> + <dt><b>pgp</b></dt> + <dd><a href="https://meta.sr.ht/~adamski.pgp">B5442B88D8E05672</a></dd> +</dl> + +Have a comment on one of my posts? Start a discussion in [my public +inbox](https://lists.sr.ht/~adamski/public-inbox) by sending an email to +[~adamski/public-inbox@lists.sr.ht](mailto:~adamski/public-inbox@lists.sr.ht) +([mailing list etiquette](https://man.sr.ht/lists.sr.ht/etiquette.md)) |