Jordan Schilling | Technologist, Software Builder, and Engineer

Jordan Schilling — software engineer and technologist

Software engineer focused on automation systems, experimental tools, and developer productivity. Projects, dev logs, and technical writing.

21 December 2025

Wiring Up Dynamic Content & Routing

by Jordan Schilling

Devlog — 2025-12-21

Today I focused on the infrastructure of the site—ensuring that content flows dynamically from the _posts directory without breaking navigation.

What I Accomplished

I explored the Jekyll documentation and used AI as a thought partner to understand the underlying backend of the platform:

The Key Fix

The breakthrough was realizing that my paths weren’t respecting the site’s subfolder structure. I updated the _config.yml and forced the links to include the baseurl:

<a href=""></a>

Linked to a custom domain:

url: "https://jordanschilling.me"
baseurl: ""
tags: jekyll - liquid - routing - templating