Repos / hi.imnhan.com / 43e9c9a9d2
commit 43e9c9a9d2fd589453ce90d8639447082c809b02
Author: Nhân <hi@imnhan.com>
Date:   Wed Aug 30 23:20:16 2023 +0700

    succumb to webfonts

diff --git a/_s4g/settings.txt b/_s4g/settings.txt
index a95d190..91e9de6 100644
--- a/_s4g/settings.txt
+++ b/_s4g/settings.txt
@@ -4,7 +4,7 @@ Tagline: and this is my humble corner on the intertubes
 Root: /
 ShowFooter: true
 FooterText: Made with <a href="https://github.com/nhanb/s4g">s4g</a> and probably too much <a href="https://www.instagram.com/cheese.coffee/">cà phê sữa đá</a>
-NavbarLinks: index.dj, about/index.dj, projects/index.dj, #CV🡕#https://cv.imnhan.com
+NavbarLinks: index.dj, about/index.dj, projects/index.dj, #CV↗#https://cv.imnhan.com
 DefaultThumb: about/keyboard-warrior.jpg
 
 AuthorName: Bùi Thành Nhân
diff --git a/_s4g/theme/base.css b/_s4g/theme/base.css
index 9ecb0ae..f988970 100644
--- a/_s4g/theme/base.css
+++ b/_s4g/theme/base.css
@@ -1,11 +1,25 @@
 html {
-  font-family: system-ui, sans-serif;
-  font-size: 1em;
+  font-size: 1em; /* respect user configured font size */
   max-width: 45rem;
   margin: auto;
+
   /* Always show scrollbar, to prevent content shifting when navigating
    * between long and short pages: */
   overflow-y: scroll;
+
+  font-family: "IBM Plex Sans", sans-serif;
+}
+
+code,
+pre {
+  font-family: "IBM Plex Mono";
+}
+code {
+  color: darkred;
+}
+pre code {
+  color: inherit;
+  font-size: 0.9rem;
 }
 
 p,
diff --git a/_s4g/theme/base.tmpl b/_s4g/theme/base.tmpl
index 710d06d..2347f2f 100644
--- a/_s4g/theme/base.tmpl
+++ b/_s4g/theme/base.tmpl
@@ -6,6 +6,7 @@
   <title>{{if .Title}}{{.Title}} | {{end}}{{ .Site.Name -}}</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="{{.Feed}}">
+  <link rel="stylesheet" href="{{.ThemePath}}/fonts.css">
   <link rel="stylesheet" href="{{.ThemePath}}/base.css">
 
   <meta property="og:title" content="{{.Post.Title}}" />
diff --git a/_s4g/theme/fonts.css b/_s4g/theme/fonts.css
new file mode 100644
index 0000000..4847036
--- /dev/null
+++ b/_s4g/theme/fonts.css
@@ -0,0 +1,79 @@
+/* ibm-plex-sans-regular - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Sans";
+  font-style: normal;
+  font-weight: 400;
+  src: url("./fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-regular.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-sans-italic - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Sans";
+  font-style: italic;
+  font-weight: 400;
+  src: url("./fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-italic.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-sans-700 - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Sans";
+  font-style: normal;
+  font-weight: 700;
+  src: url("./fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-sans-700italic - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Sans";
+  font-style: italic;
+  font-weight: 700;
+  src: url("./fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700italic.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-mono-regular - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Mono";
+  font-style: normal;
+  font-weight: 400;
+  src: url("./fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-regular.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-mono-italic - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Mono";
+  font-style: italic;
+  font-weight: 400;
+  src: url("./fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-italic.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-mono-700 - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Mono";
+  font-style: normal;
+  font-weight: 700;
+  src: url("./fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
+
+/* ibm-plex-mono-700italic - latin_latin-ext_vietnamese */
+@font-face {
+  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
+  font-family: "IBM Plex Mono";
+  font-style: italic;
+  font-weight: 700;
+  src: url("./fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700italic.woff2")
+    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
+}
diff --git a/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700.woff2 b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700.woff2
new file mode 100644
index 0000000..ae26811
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700italic.woff2 b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700italic.woff2
new file mode 100644
index 0000000..d33bcea
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-700italic.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-italic.woff2 b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-italic.woff2
new file mode 100644
index 0000000..9add339
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-italic.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-regular.woff2 b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-regular.woff2
new file mode 100644
index 0000000..22546e9
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-mono-v19-latin_latin-ext_vietnamese-regular.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700.woff2 b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700.woff2
new file mode 100644
index 0000000..874541f
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700italic.woff2 b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700italic.woff2
new file mode 100644
index 0000000..6841277
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-700italic.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-italic.woff2 b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-italic.woff2
new file mode 100644
index 0000000..45a8861
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-italic.woff2 differ
diff --git a/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-regular.woff2 b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-regular.woff2
new file mode 100644
index 0000000..15f29dd
Binary files /dev/null and b/_s4g/theme/fonts/ibm-plex-sans-v19-latin_latin-ext_vietnamese-regular.woff2 differ
diff --git a/_s4g/theme/includes.tmpl b/_s4g/theme/includes.tmpl
index 64af20d..11df5c5 100644
--- a/_s4g/theme/includes.tmpl
+++ b/_s4g/theme/includes.tmpl
@@ -5,7 +5,7 @@
   <a href="{{.Url}}" {{if .NewTab}}target="_blank"{{end}}>{{.Text}}</a>
   {{- end}}
 
-  <a class="feed-link" href="{{.Feed}}">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="{{.Feed}}" title="Actually Atom">RSS</a>
 
   {{- if not .Post.PostedAt.IsZero}}
   <span class="posted-on">
diff --git a/_s4g/theme/navbar.css b/_s4g/theme/navbar.css
index 168723a..53dcb73 100644
--- a/_s4g/theme/navbar.css
+++ b/_s4g/theme/navbar.css
@@ -1,5 +1,5 @@
 nav > a {
-  margin-right: 1rem;
+  margin-right: 0.7rem;
   text-decoration: none;
 }
 
@@ -10,11 +10,11 @@ nav > .posted-on {
 
 .nav-hr {
   clear: both;
-  margin: 0;
 }
 
 .feed-link {
   padding: 0 0.2rem;
+  margin-left: -0.2rem; /* make up for padding -> avoid misalignment */
   color: #d2660b;
   background-color: white;
   text-decoration: none;
diff --git a/about/index.html b/about/index.html
index 59dc7bf..8155286 100644
--- a/about/index.html
+++ b/about/index.html
@@ -6,6 +6,7 @@
   <title>About | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="About" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/chromebook/index.html b/chromebook/index.html
index 3573a8c..f12df58 100644
--- a/chromebook/index.html
+++ b/chromebook/index.html
@@ -6,6 +6,7 @@
   <title>Acer Chromebook Spin 713 &#34;Voxel&#34;: an adequate Crostini device, a buggy Linux laptop | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Acer Chromebook Spin 713 &#34;Voxel&#34;: an adequate Crostini device, a buggy Linux laptop" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2023-04-22">
diff --git a/cool/index.html b/cool/index.html
index c3f078b..dbcb778 100644
--- a/cool/index.html
+++ b/cool/index.html
@@ -6,6 +6,7 @@
   <title>&#34;Have you built anything cool?&#34; | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="&#34;Have you built anything cool?&#34;" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-01-25">
diff --git a/custom-theme/index.html b/custom-theme/index.html
index 6f877e4..5a84914 100644
--- a/custom-theme/index.html
+++ b/custom-theme/index.html
@@ -6,6 +6,7 @@
   <title>Look ma, no stock theme! | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Look ma, no stock theme!" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2015-06-05">
diff --git a/fcitx/index.html b/fcitx/index.html
index 7d4bf22..df0eb28 100644
--- a/fcitx/index.html
+++ b/fcitx/index.html
@@ -6,6 +6,7 @@
   <title>Dẹp ibus-unikey đi, dùng fcitx-unikey nhé! | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Dẹp ibus-unikey đi, dùng fcitx-unikey nhé!" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2015-01-29">
diff --git a/fightstick-1/index.html b/fightstick-1/index.html
index 3756eda..0d767a7 100644
--- a/fightstick-1/index.html
+++ b/fightstick-1/index.html
@@ -6,6 +6,7 @@
   <title>My first DIY fightstick: Part 1 | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="My first DIY fightstick: Part 1" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2015-12-08">
diff --git a/fightstick-2/index.html b/fightstick-2/index.html
index c2374d2..4064ad2 100644
--- a/fightstick-2/index.html
+++ b/fightstick-2/index.html
@@ -6,6 +6,7 @@
   <title>My first DIY fightstick: Part 2 | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="My first DIY fightstick: Part 2" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2016-01-23">
diff --git a/go-stack/index.html b/go-stack/index.html
index 8ef593f..380a5e3 100644
--- a/go-stack/index.html
+++ b/go-stack/index.html
@@ -6,6 +6,7 @@
   <title>Go, Postgres, Caddy, systemd: a simple, highly portable, Docker-free web stack | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Go, Postgres, Caddy, systemd: a simple, highly portable, Docker-free web stack" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2023-02-12">
diff --git a/hdviet/index.html b/hdviet/index.html
index 40b3522..40da224 100644
--- a/hdviet/index.html
+++ b/hdviet/index.html
@@ -6,6 +6,7 @@
   <title>How I bypassed my university&#39;s domain blocker to watch movies on hdviet.com | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="How I bypassed my university&#39;s domain blocker to watch movies on hdviet.com" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-03-17">
diff --git a/ideas.html b/ideas.html
index 71eaa7b..6615226 100644
--- a/ideas.html
+++ b/ideas.html
@@ -6,6 +6,7 @@
   <title>Potential project ideas | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Potential project ideas" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/index.html b/index.html
index 3f01132..6b68179 100644
--- a/index.html
+++ b/index.html
@@ -6,6 +6,7 @@
   <title>Home | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Home" />
@@ -27,9 +28,9 @@ <h1 class="site-title">Hi, I&#39;m Nhân</h1>
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/linux-automation/index.html b/linux-automation/index.html
index e85db8a..ea52752 100644
--- a/linux-automation/index.html
+++ b/linux-automation/index.html
@@ -6,6 +6,7 @@
   <title>Why I use Linux: Automation | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Why I use Linux: Automation" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2013-06-07">
diff --git a/manjaro-xfce/index.html b/manjaro-xfce/index.html
index e04d5ef..0d04278 100644
--- a/manjaro-xfce/index.html
+++ b/manjaro-xfce/index.html
@@ -6,6 +6,7 @@
   <title>What I did after installing Manjaro xfce | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="What I did after installing Manjaro xfce" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-02-04">
diff --git a/mcross/index.html b/mcross/index.html
index fe08b91..3af4e20 100644
--- a/mcross/index.html
+++ b/mcross/index.html
@@ -6,6 +6,7 @@
   <title>Introducing McRoss—a minimal gemini browser | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Introducing McRoss—a minimal gemini browser" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2020-05-29">
diff --git a/movie-streaming/gflick-fixed/index.html b/movie-streaming/gflick-fixed/index.html
index 8b42163..e9279f5 100644
--- a/movie-streaming/gflick-fixed/index.html
+++ b/movie-streaming/gflick-fixed/index.html
@@ -6,6 +6,7 @@
   <title>Streaming videos from Google Drive: a second attempt | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Streaming videos from Google Drive: a second attempt" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2020-06-10">
diff --git a/movie-streaming/gflick/index.html b/movie-streaming/gflick/index.html
index cc2b835..082506d 100644
--- a/movie-streaming/gflick/index.html
+++ b/movie-streaming/gflick/index.html
@@ -6,6 +6,7 @@
   <title>Towards an acceptable video playing experience | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Towards an acceptable video playing experience" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2020-04-26">
diff --git a/movie-streaming/index.html b/movie-streaming/index.html
index 9e83146..91aeae8 100644
--- a/movie-streaming/index.html
+++ b/movie-streaming/index.html
@@ -6,6 +6,7 @@
   <title>The movie streaming saga | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="The movie streaming saga" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/movie-streaming/put.io/index.html b/movie-streaming/put.io/index.html
index 60ef8f1..f703c14 100644
--- a/movie-streaming/put.io/index.html
+++ b/movie-streaming/put.io/index.html
@@ -6,6 +6,7 @@
   <title>The video streaming finale, or why put.io is awesome | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="The video streaming finale, or why put.io is awesome" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2020-10-21">
diff --git a/node-webkit/index.html b/node-webkit/index.html
index 9d00f42..fc5a8c2 100644
--- a/node-webkit/index.html
+++ b/node-webkit/index.html
@@ -6,6 +6,7 @@
   <title>Setting up your development environment for a node-webkit project | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Setting up your development environment for a node-webkit project" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-05-01">
diff --git a/notes.html b/notes.html
index 358c14f..90f15a0 100644
--- a/notes.html
+++ b/notes.html
@@ -6,6 +6,7 @@
   <title>Random notes | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Random notes" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/pathogen-vs-vundle/index.html b/pathogen-vs-vundle/index.html
index 58c6a41..5f4f09c 100644
--- a/pathogen-vs-vundle/index.html
+++ b/pathogen-vs-vundle/index.html
@@ -6,6 +6,7 @@
   <title>Modern vim plugin management: Pathogen vs Vundle | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Modern vim plugin management: Pathogen vs Vundle" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2013-05-13">
diff --git a/petition-fraud/index.html b/petition-fraud/index.html
index dafacdb..44bbbb4 100644
--- a/petition-fraud/index.html
+++ b/petition-fraud/index.html
@@ -6,6 +6,7 @@
   <title>I did NOT sign that online petition! | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="I did NOT sign that online petition!" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2016-03-12">
diff --git a/pippable-webapp/index.html b/pippable-webapp/index.html
index 16ea581..56fce0d 100644
--- a/pippable-webapp/index.html
+++ b/pippable-webapp/index.html
@@ -6,6 +6,7 @@
   <title>I made my python webapp installable via pip | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="I made my python webapp installable via pip" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2021-10-02">
diff --git a/projects/index.html b/projects/index.html
index 432732b..fe6adb4 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -6,6 +6,7 @@
   <title>Projects | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Projects" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">
diff --git a/pyqt5/index.html b/pyqt5/index.html
index ba8e766..04b9f1a 100644
--- a/pyqt5/index.html
+++ b/pyqt5/index.html
@@ -6,6 +6,7 @@
   <title>How to install PyQt5 on a virtualenv on Ubuntu 14.04 | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="How to install PyQt5 on a virtualenv on Ubuntu 14.04" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2015-02-14">
diff --git a/pytaku-old/index.html b/pytaku-old/index.html
index c02539c..4b20458 100644
--- a/pytaku-old/index.html
+++ b/pytaku-old/index.html
@@ -6,6 +6,7 @@
   <title>Introducing Pytaku—the only online manga reader you&#39;ll ever need | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Introducing Pytaku—the only online manga reader you&#39;ll ever need" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2015-01-02">
diff --git a/rmit-wifi/index.html b/rmit-wifi/index.html
index 381dc37..d92c7de 100644
--- a/rmit-wifi/index.html
+++ b/rmit-wifi/index.html
@@ -6,6 +6,7 @@
   <title>Fix RMIT wi-fi issue in Ubuntu 13.04 and variants | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Fix RMIT wi-fi issue in Ubuntu 13.04 and variants" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2013-06-17">
diff --git a/s4g/index.html b/s4g/index.html
index d2e4680..61270c2 100644
--- a/s4g/index.html
+++ b/s4g/index.html
@@ -6,6 +6,7 @@
   <title>s4g is a Stupidly Simple Static Site Generator | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="s4g is a Stupidly Simple Static Site Generator" />
@@ -22,9 +23,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2023-08-24">
diff --git a/sqlite-python/index.html b/sqlite-python/index.html
index 1f03bba..b2d0091 100644
--- a/sqlite-python/index.html
+++ b/sqlite-python/index.html
@@ -6,6 +6,7 @@
   <title>Working with SQLite in Python without an ORM or migration framework | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Working with SQLite in Python without an ORM or migration framework" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2022-01-30">
diff --git a/stepmania-pad/index.html b/stepmania-pad/index.html
index 347a23e..288501a 100644
--- a/stepmania-pad/index.html
+++ b/stepmania-pad/index.html
@@ -6,6 +6,7 @@
   <title>Simplest possible stepmania soft-to-hard pad mod | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Simplest possible stepmania soft-to-hard pad mod" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2021-02-08">
diff --git a/tmux-italics/index.html b/tmux-italics/index.html
index c50d428..58d961f 100644
--- a/tmux-italics/index.html
+++ b/tmux-italics/index.html
@@ -6,6 +6,7 @@
   <title>Enable italic text inside vim inside tmux inside gnome-terminal | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Enable italic text inside vim inside tmux inside gnome-terminal" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-08-02">
diff --git a/ubuntu-programs/index.html b/ubuntu-programs/index.html
index f434658..b212c41 100644
--- a/ubuntu-programs/index.html
+++ b/ubuntu-programs/index.html
@@ -6,6 +6,7 @@
   <title>Installing programs in Ubuntu | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Installing programs in Ubuntu" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2013-09-06">
diff --git a/vim-open-link/index.html b/vim-open-link/index.html
index ed4bf47..126f22a 100644
--- a/vim-open-link/index.html
+++ b/vim-open-link/index.html
@@ -6,6 +6,7 @@
   <title>Opening http link under the cursor in vim | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Opening http link under the cursor in vim" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2021-08-07">
diff --git a/virtualenvwrapper/index.html b/virtualenvwrapper/index.html
index 16f16de..4e6e724 100644
--- a/virtualenvwrapper/index.html
+++ b/virtualenvwrapper/index.html
@@ -6,6 +6,7 @@
   <title>Virtualenv(wrapper), python2 and python3 | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Virtualenv(wrapper), python2 and python3" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
   <span class="posted-on">
     Posted on
     <time datetime="2014-12-16">
diff --git a/yaks.html b/yaks.html
index e78f059..a08afaf 100644
--- a/yaks.html
+++ b/yaks.html
@@ -6,6 +6,7 @@
   <title>Yak shaving | Hi, I&#39;m Nhân</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <link rel="alternate" type="application/atom+xml" title="Atom feed" href="/feed.xml">
+  <link rel="stylesheet" href="/_s4g/theme/fonts.css">
   <link rel="stylesheet" href="/_s4g/theme/base.css">
 
   <meta property="og:title" content="Yak shaving" />
@@ -21,9 +22,9 @@
   <a href="/" >Home</a>
   <a href="/about/" >About</a>
   <a href="/projects/" >Projects</a>
-  <a href="https://cv.imnhan.com" target="_blank">CV🡕</a>
+  <a href="https://cv.imnhan.com" target="_blank">CV↗</a>
 
-  <a class="feed-link" href="/feed.xml">Atom&nbsp;Feed</a>
+  <a class="feed-link" href="/feed.xml" title="Actually Atom">RSS</a>
 
 </nav>
 <hr class="nav-hr">