diff options
author | Franck Cuny <franck@fcuny.net> | 2021-12-20 14:31:06 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-12-20 14:31:06 -0800 |
commit | 57f443be096465eb3db6aff56ec32b88530cf6dd (patch) | |
tree | 0523ed0f2550caaa4b84364d13a37e5c2613eb85 /users | |
parent | menu: simplify the menu (diff) | |
download | world-57f443be096465eb3db6aff56ec32b88530cf6dd.tar.gz |
index: re-organize the main page
Add a "contact" header with my information under it.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/index.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/users/fcuny/notes/layouts/index.html b/users/fcuny/notes/layouts/index.html index f34b21f..9e15e77 100644 --- a/users/fcuny/notes/layouts/index.html +++ b/users/fcuny/notes/layouts/index.html @@ -1,13 +1,15 @@ {{ define "main" }} -<div> - <ul> - <li>Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a></li> - <li>Git: <a href="https://git.fcuny.net/fcuny">@fcuny</a></li> - <li>Twitter: <a href="https://twitter.com/franckcuny">@franckcuny</a></li> - <li>Keys: <a href="/ssh.pub.sig">SSH public keys</a></li> - </ul> - - <p>I'm currently working as an <a href="https://twitter.com/TwitterEng">Engineer</a> at Twitter, on the Compute team.</p> +<h1>{{ .Site.Home.Title }}</h1> + +<p>I'm currently working as an <a href="https://twitter.com/TwitterEng">Engineer</a> at Twitter, on the Compute team.</p> + +<h2>Contact</h2> +<ul> + <li>Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a></li> + <li>Git: <a href="https://git.fcuny.net/fcuny">@fcuny</a></li> + <li>Twitter: <a href="https://twitter.com/franckcuny">@franckcuny</a></li> + <li>Keys: <a href="/ssh.pub.sig">SSH public keys</a></li> +</ul> {{ end }} |