fix: minor issues

* Fix FOUT
* Set cource view per page until upstream merges fix
* Set read time to to on
* set page anchors
This commit is contained in:
Timothy DeHerrera
2024-12-26 18:31:08 -07:00
parent 9b591fc700
commit 400ae477db
10 changed files with 54 additions and 1 deletions

View File

@@ -36,5 +36,5 @@ menu = [
{ name = "/about", url = "/about", weight = 4 },
]
repo_view = true
repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content"
repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content/"
favicon = "/icon/favicon.png"

View File

@@ -12,6 +12,9 @@ authorImage: "https://avatars.githubusercontent.com/u/34083928?v=4"
authorTwitter: "nrdexp"
date: "2024-10-11"
category: "personal"
extra:
read_time: true
repo_view: true
---
**Reader Advisory:** This post is sarcastic, and a bit raw. Those without a sense of humor, or an aversion to hard facts, venture no further. Also, these opinions are my own; subject to change, etc, etc.

View File

@@ -11,6 +11,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdxp52262
date: "2024-07-02"
category: politics
extra:
read_time: true
repo_view: true
---
This piece offers a perspective on recent NixOS project challenges from

View File

@@ -10,6 +10,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdxp52262
date: "2020-12-19"
category: dev
extra:
read_time: true
repo_view: true
---
## Introduction

View File

@@ -1,4 +1,5 @@
+++
title = "Blog"
sort_by = "date"
insert_anchor_links = "heading"
+++

View File

@@ -16,6 +16,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdexp
date: "2024-12-25"
category: personal
extra:
read_time: true
repo_view: true
---
This blog typically focuses on technical matters - software architecture, deployment strategies, and the occasional deep dive into systems design. While I've shared personal musings before, I've never ventured quite this deep into the waters of self-reflection and social commentary.

View File

@@ -14,6 +14,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdexp
date: "2024-12-04"
category: dev
extra:
read_time: true
repo_view: true
---
This piece explores the evolution of store-based systems and our vision for their future. While I've aimed to make it accessible to those not intimately familiar with Nix, I assume some technical foundation—particularly an interest in software distribution at scale. If terms like "reproducible builds" or "supply chain security" don't pique your curiosity, what follows might feel rather academic. However, if you're intrigued by how we might tackle the growing complexity of software distribution while maintaining security and sanity, read on.

View File

@@ -13,6 +13,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdxp52262
date: "2022-12-09"
category: dev
extra:
read_time: true
repo_view: true
---
## CI Should be Simple

View File

@@ -12,6 +12,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4
authorTwitter: nrdxp52262
date: "2022-10-31"
category: dev
extra:
read_time: true
repo_view: true
---
## Update: A Video is Worth 1000 Blogs

31
sass/fonts.scss Normal file
View File

@@ -0,0 +1,31 @@
@font-face {
font-family: 'Jetbrains Mono';
font-style: normal;
font-weight: 400;
src: url('fonts/JetbrainsMono/JetBrainsMono-Regular.ttf'), local('ttf');
font-display: fallback;
}
@font-face {
font-family: 'Jetbrains Mono';
font-style: normal;
font-weight: 700;
src: url('fonts/JetbrainsMono/JetBrainsMono-Bold.ttf'), local('ttf');
font-display: fallback;
}
@font-face {
font-family: 'Space Grotesk';
font-style: normal;
font-weight: 400;
src: url('fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf'), local('ttf');
font-display: fallback;
}
@font-face {
font-family: 'Space Grotesk';
font-style: normal;
font-weight: 700;
src: url('fonts/SpaceGrotesk/SpaceGrotesk-Bold.ttf'), local('ttf');
font-display: fallback;
}