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 | 3440a4df6f668a69217cddbb740f4305d6f732ed (patch) | |
tree | 8e185520db365bb7cf93432e6d44c5f1c9406e19 | |
parent | menu: simplify the menu (diff) | |
download | fcuny.net-3440a4df6f668a69217cddbb740f4305d6f732ed.tar.gz |
index: re-organize the main page
Add a "contact" header with my information under it.
-rw-r--r-- | layouts/index.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/layouts/index.html b/layouts/index.html index f34b21f..9e15e77 100644 --- a/layouts/index.html +++ b/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 }} |