From 5963b95e37ecf74005b64356a9bd629e12a969ef Mon Sep 17 00:00:00 2001 From: Joshua Seigler <2583159+seigler@users.noreply.github.com> Date: Fri, 7 Jun 2024 11:41:52 -0400 Subject: [PATCH] move home page to site/pages --- README.md | 10 ++++++++++ site/_includes/home.njk | 19 +++++++++++++++++++ site/index.njk | 25 ------------------------- site/pages/home.md | 13 +++++++++++++ 4 files changed, 42 insertions(+), 25 deletions(-) create mode 100644 README.md create mode 100644 site/_includes/home.njk delete mode 100644 site/index.njk create mode 100644 site/pages/home.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f8504bf --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +## Prerequisites + +- pnpm@9 +- node@20 +- [mise](https://mise.jdx.dev/) (optional) to install dependencies + +## Usage + +- Local development: `pnpm dev` +- Deploy: `pnpm upload` diff --git a/site/_includes/home.njk b/site/_includes/home.njk new file mode 100644 index 0000000..66d1fa0 --- /dev/null +++ b/site/_includes/home.njk @@ -0,0 +1,19 @@ +--- +layout: "base.njk" +--- +{{ content | safe }} +{%- for name, collection in collections -%} + {%- if name not in ["all", "timeline", "pages"] -%} +

{{name | capitalize }}

+ + {%- endif -%} +{%- endfor -%} diff --git a/site/index.njk b/site/index.njk deleted file mode 100644 index 6db9fac..0000000 --- a/site/index.njk +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: base -title: Home ---- - -

I'm Joshua Seigler, a homeschooled kid born in the 80s. I've watched technology advance from dial-up and Geocities pages, to federated social media and decentralized autonomous organizations.

-

After a period exploring cryptocurrencies and building web development skills, I dove into political philosophy, focusing on economics, conspiracy, and truth-seeking generally.

-

In an effort to make sense of the tremendous social shifts that occurred in 2019/2020, I started learning about symbolism and mysticism, trying to escape an obsolete materialistic mindset. In 2021 I returned to faith in Jesus and joined an Eastern Orthodox church.

-

If you would like to reach me, you can send me electronic mail. Or for a closer look at my professional history, try my timeline.

- -{%- for name, collection in collections -%} - {%- if name not in ["all", "timeline", "pages"] -%} -

{{name | capitalize }}

- - {%- endif -%} -{%- endfor -%} diff --git a/site/pages/home.md b/site/pages/home.md new file mode 100644 index 0000000..a7ff763 --- /dev/null +++ b/site/pages/home.md @@ -0,0 +1,13 @@ +--- +layout: home.njk +title: Home +permalink: / +--- + +I'm Joshua Seigler, a homeschooled kid born in the 80s. I've watched technology advance from dial-up and Geocities pages, to federated social media and decentralized autonomous organizations. + +After a period exploring cryptocurrencies and building web development skills, I dove into political philosophy, focusing on economics, conspiracy, and truth-seeking generally. + +In an effort to make sense of the tremendous social shifts that occurred in 2019/2020, I started learning about symbolism and mysticism, trying to escape an obsolete materialistic mindset. In 2021 I returned to faith in Jesus and joined an Eastern Orthodox church. + +If you would like to reach me, you can [send me electronic mail](mailto:joshua@seigler.net?subject=found+your+website). Or for a closer look at my professional history, try my [timeline](/timeline).