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:
118
static/legacy/farm/weblog/archives/000001.html
Normal file
118
static/legacy/farm/weblog/archives/000001.html
Normal file
@@ -0,0 +1,118 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
|
||||
<title>Farm Log: test1</title>
|
||||
|
||||
<link rel="stylesheet" href="http://www.boannsbanks.com/weblog/styles-site.css" type="text/css" />
|
||||
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
|
||||
var HOST = 'www.boannsbanks.com';
|
||||
|
||||
// Copyright (c) 1996-1997 Athenia Associates.
|
||||
// http://www.webreference.com/js/
|
||||
// License is granted if and only if this entire
|
||||
// copyright notice is included. By Tomer Shiran.
|
||||
|
||||
function setCookie (name, value, expires, path, domain, secure) {
|
||||
var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
|
||||
document.cookie = curCookie;
|
||||
}
|
||||
|
||||
function getCookie (name) {
|
||||
var prefix = name + '=';
|
||||
var c = document.cookie;
|
||||
var nullstring = '';
|
||||
var cookieStartIndex = c.indexOf(prefix);
|
||||
if (cookieStartIndex == -1)
|
||||
return nullstring;
|
||||
var cookieEndIndex = c.indexOf(";", cookieStartIndex + prefix.length);
|
||||
if (cookieEndIndex == -1)
|
||||
cookieEndIndex = c.length;
|
||||
return unescape(c.substring(cookieStartIndex + prefix.length, cookieEndIndex));
|
||||
}
|
||||
|
||||
function deleteCookie (name, path, domain) {
|
||||
if (getCookie(name))
|
||||
document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
|
||||
}
|
||||
|
||||
function fixDate (date) {
|
||||
var base = new Date(0);
|
||||
var skew = base.getTime();
|
||||
if (skew > 0)
|
||||
date.setTime(date.getTime() - skew);
|
||||
}
|
||||
|
||||
function rememberMe (f) {
|
||||
var now = new Date();
|
||||
fixDate(now);
|
||||
now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
|
||||
setCookie('mtcmtauth', f.author.value, now, '', HOST, '');
|
||||
setCookie('mtcmtmail', f.email.value, now, '', HOST, '');
|
||||
setCookie('mtcmthome', f.url.value, now, '', HOST, '');
|
||||
}
|
||||
|
||||
function forgetMe (f) {
|
||||
deleteCookie('mtcmtmail', '', HOST);
|
||||
deleteCookie('mtcmthome', '', HOST);
|
||||
deleteCookie('mtcmtauth', '', HOST);
|
||||
f.email.value = '';
|
||||
f.author.value = '';
|
||||
f.url.value = '';
|
||||
}
|
||||
|
||||
//-->
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="banner">
|
||||
Farm Log<br />
|
||||
<span class="description"></span>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div id="menu">
|
||||
|
||||
<a href="http://www.boannsbanks.com/weblog">Main</a>
|
||||
| <a href="http://www.boannsbanks.com/weblog/archives/000002.html">testing from visor »</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div class="date">January 30, 2002</div>
|
||||
|
||||
<div class="blogbody">
|
||||
|
||||
<span class="title">test1</span>
|
||||
|
||||
<p><a href="testing">testing</a></p>
|
||||
|
||||
<a name="more"></a>
|
||||
<p>testing</p>
|
||||
|
||||
<span class="posted">Posted by eric at January 30, 2002 04:18 PM<br /></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user