about summary refs log tree commit diff
path: root/layouts/index.html
blob: cbf00cc784d269a98aab2e48ada0ec75a3eb69f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{{ define "main" }}

<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'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>
</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 }}
  </ul>
</article>

<h2>Notes</h2>

<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 }}
  </ul>
</article>

{{ end }}