about summary refs log tree commit diff
path: root/users/fcuny/blog/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/fcuny/blog/layouts/index.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/users/fcuny/blog/layouts/index.html b/users/fcuny/blog/layouts/index.html
deleted file mode 100644
index 38520ef..0000000
--- a/users/fcuny/blog/layouts/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{{ 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 }}