diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-07-03 16:32:51 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-07-03 16:32:51 -0700 |
| commit | d481251d4148a9e90cf71aa1c11a8f8e077336a4 (patch) | |
| tree | a5dd8993718db7cfc7b13ef2a24a3fa2e15b582f /layouts/index.html | |
| parent | simplify the layout (diff) | |
| download | fcuny.net-d481251d4148a9e90cf71aa1c11a8f8e077336a4.tar.gz | |
some more cleanup
Diffstat (limited to 'layouts/index.html')
| -rw-r--r-- | layouts/index.html | 64 |
1 files changed, 44 insertions, 20 deletions
diff --git a/layouts/index.html b/layouts/index.html index e93f139..cbf00cc 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -2,27 +2,49 @@ <p>My name is Franck Cuny and this is my little corner on the web.</p> -<p>I currently work as a <a href="https://en.wikipedia.org/wiki/Site_reliability_engineering">Site Reliability Engineer</a> (SRE) at <a href="https://www.roblox.com/" target="_blank">Roblox</a>. Previously I worked as a SRE at <a href="https://twitter.com/TwitterEng" target="_blank">Twitter</a>, and my focus was on the infrastructure.</p> +<p> + I currently work as a + <a href="https://en.wikipedia.org/wiki/Site_reliability_engineering" + >Site Reliability Engineer</a + > + (SRE) at <a href="https://www.roblox.com/" target="_blank">Roblox</a>. + Previously I worked as a SRE at + <a href="https://twitter.com/TwitterEng" target="_blank">Twitter</a>, and my + focus was on the infrastructure. +</p> -<p>I'm interested in building sustainable teams, improving the management and operation of large infrastructure, and to work with different teams to implement best practices around reliability and security.</p> +<p> + I'm interested in building sustainable teams, improving the management and + operation of large infrastructure, and to work with different teams to + implement best practices around reliability and security. +</p> <ul> - <li>Some of my code is shared on <a href="https://github.com/fcuny">GitHub</a></li> - <li>Email: <a href="mailto:franck@fcuny.net" title="franck@fcuny.net">franck@fcuny.net</a></li> + <li> + Some of my code is shared on <a href="https://github.com/fcuny">GitHub</a> + </li> + <li> + Email: + <a href="mailto:franck@fcuny.net" title="franck@fcuny.net" + >franck@fcuny.net</a + > + </li> </ul> <h2>Articles</h2> <article> <ul> - {{ range (where .Site.Pages "Section" "blog") }} - {{ range .Pages }} - <li> - <span class="content-title"><a href="{{ .Permalink }}">{{ .Title }}</a></span> - <span class="content-date"><em>posted on {{ .Date.Format "Jan 2, 2006" }}</em></span> - </li> - {{ end }} - {{ end }} + {{ range (where .Site.Pages "Section" "blog") }} {{ range .Pages }} + <li> + <span class="content-title" + ><a href="{{ .Permalink }}">{{ .Title }}</a></span + > + <span class="content-date" + ><em>posted on {{ .Date.Format "Jan 2, 2006" }}</em></span + > + </li> + {{ end }} {{ end }} </ul> </article> @@ -30,14 +52,16 @@ <article> <ul> - {{ range (where .Site.Pages "Section" "notes") }} - {{ range .Pages }} - <li> - <span class="content-title"><a href="{{ .Permalink }}">{{ .Title }}</a></span> - <span class="content-date"><em>posted on {{ .Date.Format "Jan 2, 2006" }}</em></span> - </li> - {{ end }} - {{ end }} + {{ range (where .Site.Pages "Section" "notes") }} {{ range .Pages }} + <li> + <span class="content-title" + ><a href="{{ .Permalink }}">{{ .Title }}</a></span + > + <span class="content-date" + ><em>posted on {{ .Date.Format "Jan 2, 2006" }}</em></span + > + </li> + {{ end }} {{ end }} </ul> </article> |
