From 6888f1129da4dc0dbb00093a1a20b7aeb9b1613f Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 22 Nov 2024 11:28:29 -0700 Subject: [PATCH] get projects page working --- content/_index.md | 14 +++++++++++++- content/{ => posts}/first.md | 5 +++++ content/projects/_index.md | 8 ++++++++ content/projects/data.toml | 8 ++++++++ public/projects/data.toml | 8 ++++++++ 5 files changed, 42 insertions(+), 1 deletion(-) rename content/{ => posts}/first.md (80%) create mode 100644 content/projects/_index.md create mode 100644 content/projects/data.toml create mode 100644 public/projects/data.toml diff --git a/content/_index.md b/content/_index.md index f800635..f4b05df 100644 --- a/content/_index.md +++ b/content/_index.md @@ -5,4 +5,16 @@ template = 'home.html' lang = 'en' +++ -Words about you +## About Me + +I'm a **Happiness Architect** working at [system76](https://system76.com/). + +## Talks & Podcasts + +I sometimes appear on **talks** & **podcasts** to talk about my work and thoughts. + +## Writing & Social + +I **write things** on the internet about tech, OSes and what I'm up to. I usually share these things on **social media**. + + diff --git a/content/first.md b/content/posts/first.md similarity index 80% rename from content/first.md rename to content/posts/first.md index 614f441..1b8b5fe 100644 --- a/content/first.md +++ b/content/posts/first.md @@ -1,6 +1,11 @@ +++ title = "Welcome to my blog!" date = 2021-08-29 +draft = false + +[taxonomies] +categories = ["welcome"] +tags = ["blog"] +++ ## What will be here diff --git a/content/projects/_index.md b/content/projects/_index.md new file mode 100644 index 0000000..c033d36 --- /dev/null +++ b/content/projects/_index.md @@ -0,0 +1,8 @@ ++++ +title = "My Projects" +description = "My projects page." +template = "projects.html" + +[extra] +lang = 'en' ++++ diff --git a/content/projects/data.toml b/content/projects/data.toml new file mode 100644 index 0000000..ec62d2b --- /dev/null +++ b/content/projects/data.toml @@ -0,0 +1,8 @@ +[[project]] + name = "NixOS configs that run my life!" + desc = "my own nix configs" + tags = ["nix", "nixos" ] + links = [ + { name = "Gitlab", url = "https://gitlab.com/ahoneybun/nix-configs/" } + ] + diff --git a/public/projects/data.toml b/public/projects/data.toml new file mode 100644 index 0000000..ec62d2b --- /dev/null +++ b/public/projects/data.toml @@ -0,0 +1,8 @@ +[[project]] + name = "NixOS configs that run my life!" + desc = "my own nix configs" + tags = ["nix", "nixos" ] + links = [ + { name = "Gitlab", url = "https://gitlab.com/ahoneybun/nix-configs/" } + ] +