From 9104c84a906f79611109565f01d26425f224cf9b Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 3 Jul 2024 16:14:56 -0700 Subject: simplify the layout Get rid of the navigation bar, remove a number of elements, put more things on the main page. Clean up the CSS. --- layouts/_default/baseof.html | 1 - layouts/_default/list.html | 10 ---------- layouts/_default/single.html | 24 +----------------------- layouts/index.html | 39 +++++++++++++++++++++++++++++++++++---- layouts/partials/footer.html | 32 -------------------------------- layouts/partials/head.html | 2 -- layouts/partials/header.html | 10 ---------- layouts/partials/postlist.html | 10 ---------- layouts/taxonomy/tag.html | 6 ------ 9 files changed, 36 insertions(+), 98 deletions(-) delete mode 100644 layouts/_default/list.html delete mode 100644 layouts/partials/footer.html delete mode 100644 layouts/partials/header.html delete mode 100644 layouts/partials/postlist.html delete mode 100644 layouts/taxonomy/tag.html (limited to 'layouts') diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 0c72fb1..6406b4e 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -2,7 +2,6 @@ {{ partial "head.html" . }} - {{- partial "header.html" . -}}
{{ block "main" . }}{{ end }}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html deleted file mode 100644 index d2c59a7..0000000 --- a/layouts/_default/list.html +++ /dev/null @@ -1,10 +0,0 @@ -{{ define "main" }} - -
- - {{ $pgs := where .Data.Pages "Params.hidden" "ne" "true" }} - {{ partial "postlist" $pgs }} - -
- -{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 4312eec..a360c93 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -17,36 +17,14 @@ {{ else }} posted on {{ $pub }} - last modified {{ $mod }} {{ end }} - {{ if .Params.tags }} - {{ if eq (len .Params.tags) 1 }} - with tag: - {{ else }} - with tags: - {{ end }} - {{ range $idx, $tag := .Params.tags }} - {{ $tag }} - {{ end }} - {{ end }} -{{ if .Params.toc }} -
- Table of contents - {{ .TableOfContents }} -
-{{ end }} -
{{ .Content }}
- +↑ back home -{{ if .Params.toc }} -
- Table of contents - {{ .TableOfContents }}
-{{ end }} {{ end }} diff --git a/layouts/index.html b/layouts/index.html index 6c4feda..e93f139 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,13 +1,44 @@ {{ 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 a Site Reliability Engineer, currently working at Roblox. Previously I worked at Twitter for over 7 years, and my main focus was on Twitter's compute platform.

+

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.

-

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.

+ -

You can reach out to me at franck@fcuny.net.

+

Articles

+
+
    + {{ range (where .Site.Pages "Section" "blog") }} + {{ range .Pages }} +
  • + {{ .Title }} + +
  • + {{ end }} + {{ end }} +
+
+ +

Notes

+ +
+
    + {{ range (where .Site.Pages "Section" "notes") }} + {{ range .Pages }} +
  • + {{ .Title }} + +
  • + {{ end }} + {{ end }} +
{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html deleted file mode 100644 index 15d5311..0000000 --- a/layouts/partials/footer.html +++ /dev/null @@ -1,32 +0,0 @@ - diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 7de4fd4..39ef8aa 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -9,8 +9,6 @@ - - diff --git a/layouts/partials/header.html b/layouts/partials/header.html deleted file mode 100644 index 8f8156a..0000000 --- a/layouts/partials/header.html +++ /dev/null @@ -1,10 +0,0 @@ -
- -
diff --git a/layouts/partials/postlist.html b/layouts/partials/postlist.html deleted file mode 100644 index a08c016..0000000 --- a/layouts/partials/postlist.html +++ /dev/null @@ -1,10 +0,0 @@ - diff --git a/layouts/taxonomy/tag.html b/layouts/taxonomy/tag.html deleted file mode 100644 index 2b7d98a..0000000 --- a/layouts/taxonomy/tag.html +++ /dev/null @@ -1,6 +0,0 @@ -{{ define "main" }} - - {{ $pgs := where .Data.Pages "Params.hidden" "ne" "true" }} - {{ partial "postlist" $pgs }} - -{{ end }} -- cgit v1.2.3