Import WordPress posts and migrate standalone content to Hugo

- Successfully imported 1731 WordPress posts to Hugo markdown format
- Migrated 204+ images from archive to static directory
- Copied standalone directories (curtain, farm, gobbler, house, images, party, revcemetery, railsday, birthday)
- Fixed all internal links to use /legacy prefix for archived content
- Remapped archive links to point to correct Hugo posts
- Fixed Louisville Georgia Cemetery post rendering issue

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Eric Wagoner
2025-09-23 16:23:40 -04:00
parent c1b41472ac
commit eddd9d2a80
2423 changed files with 36062 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
---
author: Eric Wagoner
date: '2001-11-16T01:22:00'
draft: false
title: Advanced HTML
---
My coworkers refer to [this little gem](http://www.partnersoft.com/news/2001UserConf/StakingSheets/Randolph/jobs/sample/StakingSheet.html) as "The World's Most Advanced Web Page". It's meant to be printed, landscape on legal-sized paper with minimum margins. < proudNerd > It doesn't look all that complicated, really, but it took me a week or so to get it to work. It gets created on the fly by our software package, drawing in data from a number of sources. It uses HTML, CSS, Python, and a computer language we made up ourselves to create what you see. The problem is that the language underneath web pages wasn't designed with printing in mind, so it is very hard to manage margins and page breaks and exact layout on the paper. We really shouldn't be using it at all, but we needed to take advantage of the protability, size, and the fact that every computer had a pre-installed viewer. In the next few months, we'll be moving to PDF files created on the fly. PDFs are meant to be printed, so I'll have exact control of the layout, but I'll need to create the pages at the programming language level -- no WYSIWYG editors or anything like that. It will be just like when I programmed PostScript Diplomacy maps by hand. < /proudNerd >