about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--content/_index.md9
-rw-r--r--content/about.md14
-rw-r--r--content/notes/containerd-to-firecracker.md1
-rw-r--r--content/notes/cpu-power-management.md1
-rw-r--r--content/notes/making-sense-intel-amd-cpus.md1
-rw-r--r--content/notes/stuff-about-pcie.md1
-rw-r--r--content/notes/working-with-go.md1
-rw-r--r--content/notes/working-with-nix.md1
-rw-r--r--static/css/custom.css2
-rw-r--r--templates/note.html12
10 files changed, 10 insertions, 33 deletions
diff --git a/content/_index.md b/content/_index.md
index f11ae83..8bda45e 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -1,3 +1,12 @@
 ---
 title: "home"
 ---
+My name is Franck Cuny and this is my little corner on the web.
+
+I currently work as a [Site Reliability Engineer](https://en.wikipedia.org/wiki/Site_reliability_engineering) (SRE) at [Roblox](https://www.roblox.com). Previously, I worked as a SRE at [Twitter](https://twitter.com/TwitterEng), and my focus was on 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.
+
+## Contact
+
+Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a>
diff --git a/content/about.md b/content/about.md
deleted file mode 100644
index 8ce2313..0000000
--- a/content/about.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: About
-template: orphan.html
----
-
-My name is Franck Cuny and this is my little corner on the web.
-
-I currently work as a [Site Reliability Engineer](https://en.wikipedia.org/wiki/Site_reliability_engineering) (SRE) at [Roblox](https://www.roblox.com). Previously, I worked as a SRE at [Twitter](https://twitter.com/TwitterEng), and my focus was on 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.
-
-## Contact
-
-Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a>
diff --git a/content/notes/containerd-to-firecracker.md b/content/notes/containerd-to-firecracker.md
index 4f822d8..9716735 100644
--- a/content/notes/containerd-to-firecracker.md
+++ b/content/notes/containerd-to-firecracker.md
@@ -1,7 +1,6 @@
 ---
 title: containerd to firecracker
 date: 2021-05-15
-template: note.html
 ---
 
 fly.io had an [interesting
diff --git a/content/notes/cpu-power-management.md b/content/notes/cpu-power-management.md
index d7df15b..bbbd2e6 100644
--- a/content/notes/cpu-power-management.md
+++ b/content/notes/cpu-power-management.md
@@ -1,7 +1,6 @@
 ---
 title: CPU power management
 date: 2023-01-22
-template: note.html
 ---
 
 ## Maximum power consumption of a processor
diff --git a/content/notes/making-sense-intel-amd-cpus.md b/content/notes/making-sense-intel-amd-cpus.md
index 5cdd5e4..75392c6 100644
--- a/content/notes/making-sense-intel-amd-cpus.md
+++ b/content/notes/making-sense-intel-amd-cpus.md
@@ -1,7 +1,6 @@
 ---
 title: Making sense of Intel and AMD CPUs naming
 date: 2021-12-29
-template: note.html
 ---
 
 ## Intel
diff --git a/content/notes/stuff-about-pcie.md b/content/notes/stuff-about-pcie.md
index 3dbe24f..b540d24 100644
--- a/content/notes/stuff-about-pcie.md
+++ b/content/notes/stuff-about-pcie.md
@@ -1,7 +1,6 @@
 ---
 title: Stuff about PCIe
 date: 2022-01-03
-template: note.html
 ---
 
 ## Speed
diff --git a/content/notes/working-with-go.md b/content/notes/working-with-go.md
index 574b23e..29f1737 100644
--- a/content/notes/working-with-go.md
+++ b/content/notes/working-with-go.md
@@ -1,7 +1,6 @@
 ---
 title: Working with Go
 date: 2021-08-05
-template: note.html
 ---
 
 _This document assumes go version \>= 1.16_.
diff --git a/content/notes/working-with-nix.md b/content/notes/working-with-nix.md
index 70d5fbb..1f5da81 100644
--- a/content/notes/working-with-nix.md
+++ b/content/notes/working-with-nix.md
@@ -1,7 +1,6 @@
 ---
 title: working with nix
 date: 2022-05-10
-template: note.html
 ---
 
 ## the `nix develop` command
diff --git a/static/css/custom.css b/static/css/custom.css
index b13de2c..e81f61c 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -132,7 +132,7 @@ blockquote {
 /* Navigation */
 .main-nav {
   padding: 1em 0;
-  margin-bottom: 2em;
+  margin-bottom: 0.2em;
 }
 
 .main-nav ul {
diff --git a/templates/note.html b/templates/note.html
deleted file mode 100644
index 7eee854..0000000
--- a/templates/note.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
-
-{% block content -%}
-<h1>{{ page.title }}</h1>
-    
-{{ page.content | safe }}
-
-<p class="date">{{ page.date | date(format="%B %d, %Y") }}</p>
-
-{%- endblock content %}