diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-23 17:43:02 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-23 17:43:02 -0700 |
commit | 14a5a6d480f0c2d71b3f43b272e07c5ce769ad83 (patch) | |
tree | 33c9de5c9d5d2da8d0dc16302dfb9500717a490b /users/fcuny/blog/layouts/index.html | |
parent | feat(tahoe): enable sourcegraph (diff) | |
parent | sign the drone configuration (diff) | |
download | world-14a5a6d480f0c2d71b3f43b272e07c5ce769ad83.tar.gz |
Merge remote-tracking branch 'blog/main' into fcuny/migrate-monorepo-blog
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/blog/layouts/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/users/fcuny/blog/layouts/index.html b/users/fcuny/blog/layouts/index.html new file mode 100644 index 0000000..38520ef --- /dev/null +++ b/users/fcuny/blog/layouts/index.html @@ -0,0 +1,20 @@ +{{ define "main" }} + +<article> + + <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>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>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> + +{{ end }} |