2022-12-08 02:19:45 +00:00
---
layout: layout-main.njk
2022-12-08 05:43:24 +00:00
eleventyExcludeFromCollections: true
2022-12-08 02:19:45 +00:00
---
<!-- Reference for representative h - card properties: https://microformats.org/wiki/h - card -->
< div class = "h-card" rel = "author" >
2023-01-09 04:18:46 +00:00
< img class = "u-featured" src = "https://death.id.au/assets/img/banner-1500x500.jpg" alt = "A grim reaper in a decorated cubicle, writing and daydreaming, surrounded by many other grim reapers in bland, grey, cubicles" / >
< img class = "u-photo" alt = "My profile photo — a pixelated version of me" src = "https://death.id.au/assets/img/avatar-tt.svg" / >
2022-12-08 02:19:45 +00:00
< h1 >
I'm < span class = "p-name" > Gordon Pedersen< / span > .
< / h1 >
< p class = "p-note" >
...and I am a human on the Internet.
< / p >
< ul >
< li >
< button class = "icon-button button-input"
data-instruction="Please enter your fediverse / mastodon handle (e.g. '@user@domain.social')"
data-placeholder="@user@domain.social"
data-success="Thanks for the follow!"
onsubmit="handleFollow(event.value)">
2023-01-09 04:18:46 +00:00
< img src = "https://death.id.au/assets/img/Fediverse_logo_proposal.svg" alt = "Fediverse logo" >
2022-12-08 02:19:45 +00:00
Follow @death.au@death.id.au
< / button >
< / li >
2023-01-09 04:18:46 +00:00
< li > < i > < img class = "tiny-avatar" src = "https://death.id.au/assets/img/avatar-tt-trans.svg" > < / i > < a class = "u-uid u-url" href = "https://death.id.au" > Mon Repos (you are here)< / a > < a class = "u-url" href = "acct:death.au@death.id.au" > < / a > < / li >
2022-12-08 02:19:45 +00:00
< li > < i class = "fa-brands fa-mastodon" > < / i > < a class = "u-url" href = "https://pkm.social/@death_au" rel = "me" > @death_au@pkm.social< / a > < / li >
< li > < i class = "fa-brands fa-github" > < / i > < a class = "u-url" href = "https://github.com/deathau" rel = "me" > @deathau< / a > < / li >
< li > < i class = "fa-brands fa-twitter" > < / i > < a class = "u-url" href = "https://twitter.com/death_au" rel = "me" > @death_au< / a > < / li >
< li > < i class = "fa-brands fa-linkedin" > < / i > < a class = "u-url" href = "https://www.linkedin.com/in/gordon-pedersen/" > Gordon Pedersen< / a > < / li >
< / ul >
< / div >
2022-11-30 09:00:28 +00:00
2022-12-08 02:19:45 +00:00
{% layoutblock 'foot' %}
< script src = "/assets/js/follow.js" > < / script >
2022-11-30 10:42:50 +00:00
< script src = "/assets/js/button-input.js" > < / script >
2022-11-30 09:00:28 +00:00
< script >
window.addEventListener('unhandledrejection', function(event) {
alert(event.reason)
})
function handleFollow(handle) {
try{
follow('@death.au@death.id.au', handle)
}
catch(e){
alert(e)
}
}
function tryFollow(user) {
try{
follow(user)
}
catch(e){
alert(e)
}
}
< / script >
2023-01-09 04:18:46 +00:00
{% endlayoutblock %}