diff options
Diffstat (limited to 'www/index.vto')
| -rw-r--r-- | www/index.vto | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/www/index.vto b/www/index.vto new file mode 100644 index 0000000..430e129 --- /dev/null +++ b/www/index.vto @@ -0,0 +1,58 @@ +--- +title: Mike Vink +contacts: +- href: /publickey.gpg + name: gpg +- href: https://github.com/ivi-vink + name: github +- href: https://stackoverflow.com/users/16349137/carrot-the-king + name: stackoverflow +--- +<html> + <head> + <title>{{ title }}</title> + <link rel="stylesheet" href="/styles.css" /> + </head> + <body> + <header> + <h1>{{ title }}'s Webpage</h1> + </header> + <main> + <article> + <figure class="rounded centered"> + <span class="marginnote"> + <a href="/dunya-full.jpg"> + <img src="/dunya.jpg" alt="/dunya.jpg" /> + </a> + </span> + <a href="/picture-full.jpg"> + <img src="/picture.jpg" alt="/picture.jpg" /> + </a> + </figure> + <section> + <p> + Hello world. + <span class="marginnote"> + something to note + </span> + </p> + </section> + </article> + </main> + <footer> + <h2>Contact Info</h2> + <ul> + <li> + email: ivi at this site's parent domain + </li> + {{ for link of contacts }} + <li> + <a href="{{ link.href }}"> + {{ link.name }} + </a> + </li> + {{ /for }} + </ul> + </footer> + </body> +</html> |
