diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-16 09:17:35 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-16 09:17:35 -0800 |
commit | 7ac496c860a8e6f57d3bab1207b1f677c9b6a835 (patch) | |
tree | 4bbb3ae58bd9cf9c1868fe0db9bb9e0dcda985c7 /users/fcuny/blog/layouts/index.html | |
parent | note: update list of chipset for alder lake (diff) | |
download | world-7ac496c860a8e6f57d3bab1207b1f677c9b6a835.tar.gz |
layout: improve readability and remove /notes
The notes will be moved to a different site/repository, with their own style. Update the index page to make it more readable. Make the header more visible with fewer links. Add a footer, with links using SVG icons.
Diffstat (limited to 'users/fcuny/blog/layouts/index.html')
-rw-r--r-- | users/fcuny/blog/layouts/index.html | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/users/fcuny/blog/layouts/index.html b/users/fcuny/blog/layouts/index.html index 2ab8c40..38520ef 100644 --- a/users/fcuny/blog/layouts/index.html +++ b/users/fcuny/blog/layouts/index.html @@ -2,17 +2,18 @@ <article> -<h1>{{ .Site.Home.Title }}</h1> + <p>I'm a Principal SRE, currently working at <a href="https://www.roblox.com/" target="_blank">Roblox</a>. Previously I worked at <a href="https://twitter.com/TwitterEng" target="_blank">Twitter</a> for over 7 years, and my main focus was on Twitter's compute platform.</p> -<p>I'm an engineer currently on a break. Previously I was a Site Reliability Engineer working on Twitter's compute platform.</p> + <p>My general interests are in building sustainable teams, improving the management and operation of large infrastructure, and work with different teams to implement best practices around reliability and security.</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> + <h2>Posts</h2> + <ul> + {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }} + {{ range $pages }} + {{- $fmt := "2006-01-02" }} + <li class="post-permalink"><span class="post-date" >{{ .Date.Format $fmt | safeHTML }}</span>, <a href="{{ .Permalink }}">{{ .Title }}</a></li> + {{ end }} + </ul> </article> |