From 01ccf6edd88a66682c1866e8248420fb90ecbfd6 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 5 Oct 2022 17:56:27 -0700 Subject: ref(fcuny/blog): delete the blog The blog moved back to https://github.com/fcuny/fcuny.net --- users/fcuny/blog/layouts/_default/baseof.html | 11 ----- users/fcuny/blog/layouts/_default/list.html | 10 ----- users/fcuny/blog/layouts/_default/single.html | 54 ------------------------- users/fcuny/blog/layouts/index.atom.xml | 24 ----------- users/fcuny/blog/layouts/index.html | 20 --------- users/fcuny/blog/layouts/partials/footer.html | 32 --------------- users/fcuny/blog/layouts/partials/head.html | 18 --------- users/fcuny/blog/layouts/partials/header.html | 10 ----- users/fcuny/blog/layouts/partials/postlist.html | 12 ------ users/fcuny/blog/layouts/taxonomy/tag.html | 6 --- 10 files changed, 197 deletions(-) delete mode 100644 users/fcuny/blog/layouts/_default/baseof.html delete mode 100644 users/fcuny/blog/layouts/_default/list.html delete mode 100644 users/fcuny/blog/layouts/_default/single.html delete mode 100644 users/fcuny/blog/layouts/index.atom.xml delete mode 100644 users/fcuny/blog/layouts/index.html delete mode 100644 users/fcuny/blog/layouts/partials/footer.html delete mode 100644 users/fcuny/blog/layouts/partials/head.html delete mode 100644 users/fcuny/blog/layouts/partials/header.html delete mode 100644 users/fcuny/blog/layouts/partials/postlist.html delete mode 100644 users/fcuny/blog/layouts/taxonomy/tag.html (limited to 'users/fcuny/blog/layouts') diff --git a/users/fcuny/blog/layouts/_default/baseof.html b/users/fcuny/blog/layouts/_default/baseof.html deleted file mode 100644 index 410e2bc..0000000 --- a/users/fcuny/blog/layouts/_default/baseof.html +++ /dev/null @@ -1,11 +0,0 @@ - - - {{ partial "head.html" . }} - - {{- partial "header.html" . -}} -
- {{ block "main" . }}{{ end }} -
- {{- partial "footer.html" . -}} - - diff --git a/users/fcuny/blog/layouts/_default/list.html b/users/fcuny/blog/layouts/_default/list.html deleted file mode 100644 index d2c59a7..0000000 --- a/users/fcuny/blog/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/users/fcuny/blog/layouts/_default/single.html b/users/fcuny/blog/layouts/_default/single.html deleted file mode 100644 index 7a85a05..0000000 --- a/users/fcuny/blog/layouts/_default/single.html +++ /dev/null @@ -1,54 +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 }} -
published {{ $pub }}
- {{ else }} -
published {{ $pub }} - last modified {{ $mod }}
- {{ end }} - {{ if .Params.tags }} -
- {{ if eq (len .Params.tags) 1 }} - tag: - {{ else }} - tags: - {{ end }} - {{ range $idx, $tag := .Params.tags }} - {{ $tag }} - {{ end }} -
- {{ end }} -
- -{{ if .Params.toc }} -
- Table of contents - {{ .TableOfContents }} -
-{{ end }} - -
-{{ .Content }} -
- -
- -{{ if .Params.toc }} -
- Table of contents - {{ .TableOfContents }} -
-{{ end }} - -{{ end }} diff --git a/users/fcuny/blog/layouts/index.atom.xml b/users/fcuny/blog/layouts/index.atom.xml deleted file mode 100644 index 1d73f9b..0000000 --- a/users/fcuny/blog/layouts/index.atom.xml +++ /dev/null @@ -1,24 +0,0 @@ - - {{ .Site.Title }} - - - {{ .Permalink }}{{ with .Site.Author.name }} - - {{.}}{{ with $.Site.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 }} - - {{.}} - {{end}} - {{- $fmt := "2006-01-02T15:04:05-07:00" }} - {{ .Date.Format $fmt | safeHTML }} - {{ ` - - {{ end }} - 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" }} - -
- -

I'm a Principal SRE, currently working at Roblox. Previously I worked at Twitter for over 7 years, and my main focus was on Twitter's compute platform.

- -

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.

- -

Posts

- - -
- -{{ end }} diff --git a/users/fcuny/blog/layouts/partials/footer.html b/users/fcuny/blog/layouts/partials/footer.html deleted file mode 100644 index ca2a699..0000000 --- a/users/fcuny/blog/layouts/partials/footer.html +++ /dev/null @@ -1,32 +0,0 @@ - diff --git a/users/fcuny/blog/layouts/partials/head.html b/users/fcuny/blog/layouts/partials/head.html deleted file mode 100644 index 7de4fd4..0000000 --- a/users/fcuny/blog/layouts/partials/head.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - {{ $css := "/css/custom.css" }} - - - - - - - - - - {{ .Title }} - diff --git a/users/fcuny/blog/layouts/partials/header.html b/users/fcuny/blog/layouts/partials/header.html deleted file mode 100644 index 65900eb..0000000 --- a/users/fcuny/blog/layouts/partials/header.html +++ /dev/null @@ -1,10 +0,0 @@ -
- -
diff --git a/users/fcuny/blog/layouts/partials/postlist.html b/users/fcuny/blog/layouts/partials/postlist.html deleted file mode 100644 index 3d5cf04..0000000 --- a/users/fcuny/blog/layouts/partials/postlist.html +++ /dev/null @@ -1,12 +0,0 @@ -{{ range .GroupByDate "2006" }} -

{{ .Key }}

- -{{ end }} diff --git a/users/fcuny/blog/layouts/taxonomy/tag.html b/users/fcuny/blog/layouts/taxonomy/tag.html deleted file mode 100644 index 2b7d98a..0000000 --- a/users/fcuny/blog/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