From fccd15aec3507fd3f0cb4a2c18a0ec1af1d69c1f Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 4 Jul 2024 11:36:33 -0700 Subject: migrate to zola --- layouts/_default/baseof.html | 7 ----- layouts/_default/single.html | 28 ------------------ layouts/index.atom.xml | 32 --------------------- layouts/index.html | 68 -------------------------------------------- layouts/partials/head.html | 25 ---------------- 5 files changed, 160 deletions(-) delete mode 100644 layouts/_default/baseof.html delete mode 100644 layouts/_default/single.html delete mode 100644 layouts/index.atom.xml delete mode 100644 layouts/index.html delete mode 100644 layouts/partials/head.html (limited to 'layouts') diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html deleted file mode 100644 index b2fbbc1..0000000 --- a/layouts/_default/baseof.html +++ /dev/null @@ -1,7 +0,0 @@ - - - {{ partial "head.html" . }} - -
{{ block "main" . }}{{ end }}
- - diff --git a/layouts/_default/single.html b/layouts/_default/single.html deleted file mode 100644 index 2919b8f..0000000 --- a/layouts/_default/single.html +++ /dev/null @@ -1,28 +0,0 @@ -{{ define "main" }} - -
-

{{ .Title }}

- -
- {{- $pub := .Date.Format "Jan 2, 2006" -}} - {{- $mod := "" -}} - - {{- if (not .GitInfo) }} - {{- $mod = .Lastmod.Format "Jan 2, 2006" -}} - {{ else }} - {{- $mod = .Page.GitInfo.CommitDate.Format "Jan 2, 2006" -}} - {{ end -}} - - {{ if eq $pub $mod }} - posted on {{ $pub }} - {{ else }} - posted on {{ $pub }} - last modified {{ $mod }} - {{ end }} -
- -
{{ .Content }}
- - ↑ back home -
- -{{ end }} diff --git a/layouts/index.atom.xml b/layouts/index.atom.xml deleted file mode 100644 index a80fc53..0000000 --- a/layouts/index.atom.xml +++ /dev/null @@ -1,32 +0,0 @@ - - {{ .Site.Title }} - - - {{ .Permalink }} - - {{ with .Site.Params.Author.name }} - - {{.}} - {{ with $.Site.Params.Author.email }} - {{.}} - {{end}} - - {{end}} - - Hugo -- gohugo.io - {{ range where (first 10 (where .Site.Pages "Section" "blog")) "Params.hidden" "ne" "true" }} - - {{ `<![CDATA[` | safeHTML }}{{ .Title }}]]> - - {{ .Permalink }} - {{ with .Site.Params.Author.name }} - - {{.}} - - {{end}} - {{- $fmt := "2006-01-02T15:04:05-07:00" }} - {{ .Date.Format $fmt | safeHTML }} - {{ ` - - {{ end }} - diff --git a/layouts/index.html b/layouts/index.html deleted file mode 100644 index cbf00cc..0000000 --- a/layouts/index.html +++ /dev/null @@ -1,68 +0,0 @@ -{{ define "main" }} - -

My name is Franck Cuny and this is my little corner on the web.

- -

- I currently work as a - Site Reliability Engineer - (SRE) at Roblox. - Previously I worked as a SRE at - Twitter, and my - focus was on the infrastructure. -

- -

- 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. -

- - - -

Articles

- -
- -
- -

Notes

- -
- -
- -{{ end }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html deleted file mode 100644 index 1fa0b42..0000000 --- a/layouts/partials/head.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - {{ $css := "/css/custom.css" }} {{ $feed := "/feed.xml" }} - - - - - - - - - {{ .Title }} - -- cgit v1.2.3