aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/blog/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/blog/layouts/index.html')
-rw-r--r--users/fcuny/blog/layouts/index.html20
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 }}