diff options
| -rw-r--r-- | www/index.vto | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/www/index.vto b/www/index.vto index da141ec..b5e731e 100644 --- a/www/index.vto +++ b/www/index.vto @@ -3,10 +3,13 @@ title: Mike Vink contacts: - href: /publickey.gpg name: gpg + description: Send me an encrypted email. - href: https://github.com/ivi-vink name: github + description: I still use GitHub. - href: https://stackoverflow.com/users/16349137/carrot-the-king name: stackoverflow + description: I am a Lurker. --- <html> <head> @@ -38,18 +41,24 @@ contacts: <p> Well Met Netizen! I am Mike Vink and this is my webpage. <h2>Contact Info</h2> - <ul> - <li> - email: ivi at this site's parent domain - </li> + <dl> + <dt> + email + </dt> + <dd> + ivi at this site's parent domain. + </dd> {{ for link of contacts }} - <li> + <dt> <a href="{{ link.href }}"> {{ link.name }} </a> - </li> + </dt> + <dd> + {{ link.description }} + </dd> {{ /for }} - </ul> + </dl> </p> </section> </article> |
