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:
8
static/legacy/farm/weblog/WS_FTP.LOG
Normal file
8
static/legacy/farm/weblog/WS_FTP.LOG
Normal file
@@ -0,0 +1,8 @@
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives.html <-- phpWebHosting /www/farm/weblog archives.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\index.html <-- phpWebHosting /www/farm/weblog index.html
|
||||
2002.03.08 14:24 B X:\eric\tmp\www\farm\weblog\index.xml <-- phpWebHosting /www/farm/weblog index.xml
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\styles-site.css <-- phpWebHosting /www/farm/weblog styles-site.css
|
||||
2002.03.08 15:22 A X:\eric\tmp\www\farm\weblog\archives.html --> quantum.phpwebhosting.com /www/farm/weblog archives.html
|
||||
2002.03.08 15:22 A X:\eric\tmp\www\farm\weblog\index.html --> quantum.phpwebhosting.com /www/farm/weblog index.html
|
||||
2002.03.08 15:22 B X:\eric\tmp\www\farm\weblog\index.xml --> quantum.phpwebhosting.com /www/farm/weblog index.xml
|
||||
2002.03.08 15:22 A X:\eric\tmp\www\farm\weblog\styles-site.css --> quantum.phpwebhosting.com /www/farm/weblog styles-site.css
|
29
static/legacy/farm/weblog/archives.html
Normal file
29
static/legacy/farm/weblog/archives.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!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 Archives</title>
|
||||
|
||||
<link rel="stylesheet" href="styles-site.css" type="text/css" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="banner">
|
||||
Farm Log<br />
|
||||
<span class="description"></span>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="blog">
|
||||
<div class="blogbody">
|
||||
<a href="http://www.boannsbanks.com/weblog/archives/000005.html">Baby chickens</a><br />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
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>
|
119
static/legacy/farm/weblog/archives/000002.html
Normal file
119
static/legacy/farm/weblog/archives/000002.html
Normal file
@@ -0,0 +1,119 @@
|
||||
<!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: testing from visor</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/archives/000001.html">« test1</a> |
|
||||
|
||||
<a href="http://www.boannsbanks.com/weblog">Main</a>
|
||||
| <a href="http://www.boannsbanks.com/weblog/archives/000003.html">test3 »</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div class="date">January 30, 2002</div>
|
||||
|
||||
<div class="blogbody">
|
||||
|
||||
<span class="title">testing from visor</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:28 PM<br /></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
120
static/legacy/farm/weblog/archives/000003.html
Normal file
120
static/legacy/farm/weblog/archives/000003.html
Normal file
@@ -0,0 +1,120 @@
|
||||
<!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: test3</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/archives/000002.html">« testing from visor</a> |
|
||||
|
||||
<a href="http://www.boannsbanks.com/weblog">Main</a>
|
||||
| <a href="http://www.boannsbanks.com/weblog/archives/000004.html">test4 »</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div class="date">January 30, 2002</div>
|
||||
|
||||
<div class="blogbody">
|
||||
|
||||
<span class="title">test3</span>
|
||||
|
||||
<p>testing visor again.<br />
|
||||
</p>
|
||||
|
||||
<a name="more"></a>
|
||||
|
||||
|
||||
<span class="posted">Posted by eric at January 30, 2002 07:46 PM<br /></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
118
static/legacy/farm/weblog/archives/000004.html
Normal file
118
static/legacy/farm/weblog/archives/000004.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: test4</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/archives/000003.html">« test3</a> |
|
||||
|
||||
<a href="http://www.boannsbanks.com/weblog">Main</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div class="date">January 31, 2002</div>
|
||||
|
||||
<div class="blogbody">
|
||||
|
||||
<span class="title">test4</span>
|
||||
|
||||
<p>test4</p>
|
||||
|
||||
<a name="more"></a>
|
||||
|
||||
|
||||
<span class="posted">Posted by eric at January 31, 2002 04:11 PM<br /></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
165
static/legacy/farm/weblog/archives/000005.html
Normal file
165
static/legacy/farm/weblog/archives/000005.html
Normal file
@@ -0,0 +1,165 @@
|
||||
<!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: Baby chickens</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>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="blog">
|
||||
|
||||
<div class="date">February 03, 2002</div>
|
||||
|
||||
<div class="blogbody">
|
||||
|
||||
<span class="title">Baby chickens</span>
|
||||
|
||||
<p>The marvels of modern transportation enabled 75 chickens, hatched yesterday morning in Iowa, to arrive on the farm today. They are learning how to eat and drink and are exploring their new home -- a five-foot diameter kiddie pool.</p>
|
||||
|
||||
<p>They are a mix of breeds from the country's leading rare poultry breeder, <a href="http://www.mcmurrayhatchery.com">Murray McMurray</a>. When they're older, say, late June, they'll begin laying a variety of colored eggs. White and brown, of course, but also green, blue, pink, and purple. And shades in between. Except for those the experts mis-judged... they'll become roosters. Even experts have a 95% accuracy rate at best when sexing just-hatched chickens.</p>
|
||||
|
||||
<p>After a couple of months, they'll move in with our older ten hens and rooster into a day-range home we're building for them. The lumber for that is mostly in a pile, so I'll save the description of that for another time.</p>
|
||||
|
||||
<a name="more"></a>
|
||||
|
||||
|
||||
<span class="posted">Posted by eric at February 03, 2002 04:43 PM<br /></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="comments-head"><a name="comments"></a>Comments</div>
|
||||
|
||||
<div class="comments-body">
|
||||
<p> So, where is the weblog for the farm? :p</p>
|
||||
<span class="comments-post">Posted by: satan on February 12, 2002 02:54 AM</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="comments-head">Post a comment</div>
|
||||
|
||||
<div class="comments-body">
|
||||
<form method="post" action="http://www.ericwagoner.com/mt/mt-comments.cgi" name="comments_form" onsubmit="if (this.bakecookie.checked) rememberMe(this)">
|
||||
<input type="hidden" name="static" value="1" />
|
||||
<input type="hidden" name="entry_id" value="5" />
|
||||
|
||||
Name:<br />
|
||||
<input name="author" /><br /><br />
|
||||
|
||||
Email Address:<br />
|
||||
<input name="email" /><br /><br />
|
||||
|
||||
URL:<br />
|
||||
<input name="url" /><br /><br />
|
||||
|
||||
Comments:<br />
|
||||
<textarea name="text" rows="10" cols="50"></textarea><br /><br />
|
||||
|
||||
<input type="checkbox" name="bakecookie" />Remember info?<br /><br />
|
||||
|
||||
<input type="submit" name="preview" value=" PREVIEW " />
|
||||
<input type="submit" name="post" value=" POST " /><br /><br />
|
||||
|
||||
<input type="button" onclick="forgetMe(this.form)" value="FORGET PERSONAL INFORMATION" />
|
||||
</form>
|
||||
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
document.comments_form.email.value = getCookie("mtcmtmail");
|
||||
document.comments_form.author.value = getCookie("mtcmtauth");
|
||||
document.comments_form.url.value = getCookie("mtcmthome");
|
||||
//-->
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
99
static/legacy/farm/weblog/archives/2002_01.html
Normal file
99
static/legacy/farm/weblog/archives/2002_01.html
Normal file
@@ -0,0 +1,99 @@
|
||||
<!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: January 2002 Archives</title>
|
||||
|
||||
<link rel="stylesheet" href="http://www.boannsbanks.com/weblog/styles-site.css" type="text/css" />
|
||||
|
||||
</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>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="blog">
|
||||
<div class="date">January 31, 2002</div>
|
||||
|
||||
|
||||
<div class="blogbody">
|
||||
<a name="000004"></a>
|
||||
<span class="title">test4</span>
|
||||
|
||||
<p>test4</p>
|
||||
|
||||
|
||||
|
||||
<div class="posted">Posted by eric at <a href="http://www.boannsbanks.com/weblog/archives/000004.html#000004">04:11 PM</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="date">January 30, 2002</div>
|
||||
|
||||
|
||||
<div class="blogbody">
|
||||
<a name="000003"></a>
|
||||
<span class="title">test3</span>
|
||||
|
||||
<p>testing visor again.<br />
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<div class="posted">Posted by eric at <a href="http://www.boannsbanks.com/weblog/archives/000003.html#000003">07:46 PM</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="blogbody">
|
||||
<a name="000002"></a>
|
||||
<span class="title">testing from visor</span>
|
||||
|
||||
<p><a href="testing">testing</a></p>
|
||||
|
||||
<p>testing</p>
|
||||
|
||||
|
||||
<div class="posted">Posted by eric at <a href="http://www.boannsbanks.com/weblog/archives/000002.html#000002">04:28 PM</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="blogbody">
|
||||
<a name="000001"></a>
|
||||
<span class="title">test1</span>
|
||||
|
||||
<p><a href="testing">testing</a></p>
|
||||
|
||||
<p>testing</p>
|
||||
|
||||
|
||||
<div class="posted">Posted by eric at <a href="http://www.boannsbanks.com/weblog/archives/000001.html#000001">04:18 PM</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
57
static/legacy/farm/weblog/archives/2002_02.html
Normal file
57
static/legacy/farm/weblog/archives/2002_02.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<!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: February 2002 Archives</title>
|
||||
|
||||
<link rel="stylesheet" href="http://www.boannsbanks.com/weblog/styles-site.css" type="text/css" />
|
||||
|
||||
</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>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="blog">
|
||||
<div class="date">February 03, 2002</div>
|
||||
|
||||
|
||||
<div class="blogbody">
|
||||
<a name="000005"></a>
|
||||
<span class="title">Baby chickens</span>
|
||||
|
||||
<p>The marvels of modern transportation enabled 75 chickens, hatched yesterday morning in Iowa, to arrive on the farm today. They are learning how to eat and drink and are exploring their new home -- a five-foot diameter kiddie pool.</p>
|
||||
|
||||
<p>They are a mix of breeds from the country's leading rare poultry breeder, <a href="http://www.mcmurrayhatchery.com">Murray McMurray</a>. When they're older, say, late June, they'll begin laying a variety of colored eggs. White and brown, of course, but also green, blue, pink, and purple. And shades in between. Except for those the experts mis-judged... they'll become roosters. Even experts have a 95% accuracy rate at best when sexing just-hatched chickens.</p>
|
||||
|
||||
<p>After a couple of months, they'll move in with our older ten hens and rooster into a day-range home we're building for them. The lumber for that is mostly in a pile, so I'll save the description of that for another time.</p>
|
||||
|
||||
|
||||
|
||||
<div class="posted">Posted by eric at <a href="http://www.boannsbanks.com/weblog/archives/000005.html#000005">04:43 PM</a></div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
14
static/legacy/farm/weblog/archives/WS_FTP.LOG
Normal file
14
static/legacy/farm/weblog/archives/WS_FTP.LOG
Normal file
@@ -0,0 +1,14 @@
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\000001.html <-- phpWebHosting /www/farm/weblog/archives 000001.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\000002.html <-- phpWebHosting /www/farm/weblog/archives 000002.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\000003.html <-- phpWebHosting /www/farm/weblog/archives 000003.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\000004.html <-- phpWebHosting /www/farm/weblog/archives 000004.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\000005.html <-- phpWebHosting /www/farm/weblog/archives 000005.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\2002_01.html <-- phpWebHosting /www/farm/weblog/archives 2002_01.html
|
||||
2002.03.08 14:24 A X:\eric\tmp\www\farm\weblog\archives\2002_02.html <-- phpWebHosting /www/farm/weblog/archives 2002_02.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\000001.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 000001.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\000002.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 000002.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\000003.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 000003.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\000004.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 000004.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\000005.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 000005.html
|
||||
2002.03.08 15:21 A X:\eric\tmp\www\farm\weblog\archives\2002_01.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 2002_01.html
|
||||
2002.03.08 15:22 A X:\eric\tmp\www\farm\weblog\archives\2002_02.html --> quantum.phpwebhosting.com /www/farm/weblog/archives 2002_02.html
|
207
static/legacy/farm/weblog/index.html
Normal file
207
static/legacy/farm/weblog/index.html
Normal file
@@ -0,0 +1,207 @@
|
||||
<!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</title>
|
||||
|
||||
<link rel="stylesheet" href="styles-site.css" type="text/css" />
|
||||
|
||||
<script language="javascript" type="text/javascript">
|
||||
function OpenComments (c) {
|
||||
window.open('http://www.ericwagoner.com/mt/mt-comments.cgi?' +
|
||||
'entry_id=' + c,
|
||||
'comments',
|
||||
'width=480,height=480,scrollbars=yes,status=yes');
|
||||
}
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="banner">
|
||||
Farm Log<br />
|
||||
<span class="description"></span>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
|
||||
<div class="blog">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="links">
|
||||
|
||||
|
||||
|
||||
<div align="center" id="calendar">
|
||||
|
||||
<table border="0" cellspacing="4" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="7" align="center"><span class="calendarhead">February 2002</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">Sun</td>
|
||||
<td align="center">Mon</td>
|
||||
<td align="center">Tue</td>
|
||||
<td align="center">Wed</td>
|
||||
<td align="center">Thu</td>
|
||||
<td align="center">Fri</td>
|
||||
<td align="center">Sat</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
1</td>
|
||||
|
||||
<td align="center">
|
||||
2</td></tr><tr>
|
||||
|
||||
<td align="center">
|
||||
<a href="http://www.boannsbanks.com/weblog/archives/000005.html">3</a></td>
|
||||
|
||||
<td align="center">
|
||||
4</td>
|
||||
|
||||
<td align="center">
|
||||
5</td>
|
||||
|
||||
<td align="center">
|
||||
6</td>
|
||||
|
||||
<td align="center">
|
||||
7</td>
|
||||
|
||||
<td align="center">
|
||||
8</td>
|
||||
|
||||
<td align="center">
|
||||
9</td></tr><tr>
|
||||
|
||||
<td align="center">
|
||||
10</td>
|
||||
|
||||
<td align="center">
|
||||
11</td>
|
||||
|
||||
<td align="center">
|
||||
12</td>
|
||||
|
||||
<td align="center">
|
||||
13</td>
|
||||
|
||||
<td align="center">
|
||||
14</td>
|
||||
|
||||
<td align="center">
|
||||
15</td>
|
||||
|
||||
<td align="center">
|
||||
16</td></tr><tr>
|
||||
|
||||
<td align="center">
|
||||
17</td>
|
||||
|
||||
<td align="center">
|
||||
18</td>
|
||||
|
||||
<td align="center">
|
||||
19</td>
|
||||
|
||||
<td align="center">
|
||||
20</td>
|
||||
|
||||
<td align="center">
|
||||
21</td>
|
||||
|
||||
<td align="center">
|
||||
22</td>
|
||||
|
||||
<td align="center">
|
||||
23</td></tr><tr>
|
||||
|
||||
<td align="center">
|
||||
24</td>
|
||||
|
||||
<td align="center">
|
||||
25</td>
|
||||
|
||||
<td align="center">
|
||||
26</td>
|
||||
|
||||
<td align="center">
|
||||
27</td>
|
||||
|
||||
<td align="center">
|
||||
28</td>
|
||||
|
||||
<td align="center">
|
||||
</td>
|
||||
|
||||
<td align="center">
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="sidetitle">
|
||||
Archives
|
||||
</div>
|
||||
|
||||
<div class="side">
|
||||
<a href="http://www.boannsbanks.com/weblog/archives/2002_02.html">February 2002</a><br />
|
||||
|
||||
</div>
|
||||
|
||||
<div class="sidetitle">
|
||||
Recent Entries
|
||||
</div>
|
||||
|
||||
<div class="side">
|
||||
<a href="http://www.boannsbanks.com/weblog/archives/000005.html">Baby chickens</a><br />
|
||||
|
||||
</div>
|
||||
|
||||
<div class="sidetitle">
|
||||
Links
|
||||
</div>
|
||||
|
||||
<div class="side">
|
||||
<a href="">Add Your Links Here</a><br />
|
||||
</div>
|
||||
|
||||
<div class="syndicate">
|
||||
<a href="index.xml">Syndicate this site (XML)</a>
|
||||
</div>
|
||||
|
||||
<div class="powered">
|
||||
Powered by<br /><a href="http://www.movabletype.org">Movable Type</a><br />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
15
static/legacy/farm/weblog/index.xml
Normal file
15
static/legacy/farm/weblog/index.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<rss version="0.91">
|
||||
<channel>
|
||||
<title>Farm Log</title>
|
||||
<link>http://www.boannsbanks.com/weblog</link>
|
||||
<description></description>
|
||||
<language>en-us</language>
|
||||
<item>
|
||||
<title>Baby chickens</title>
|
||||
<description>The marvels of modern transportation enabled 75 chickens, hatched yesterday morning in Iowa, to arrive on the farm today. They are learning how to eat and drink and are exploring their new home -- a five-foot diameter kiddie pool.</description>
|
||||
<link>http://www.boannsbanks.com/weblog/archives/000005.html</link>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
217
static/legacy/farm/weblog/styles-site.css
Normal file
217
static/legacy/farm/weblog/styles-site.css
Normal file
@@ -0,0 +1,217 @@
|
||||
body {
|
||||
margin:0px 0px 10px 0px;
|
||||
background:#BBCEF3;
|
||||
}
|
||||
A { color: #999966; font-family: verdana, arial, sans-serif; font-size:10px; text-decoration: none; font-weight:bold; }
|
||||
A:link { color: #999966; text-decoration: none; }
|
||||
A:visited { color: #999966; text-decoration: none; }
|
||||
A:active { color: #99CC66; }
|
||||
A:hover { color: #99CC66; }
|
||||
|
||||
#banner {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#FFF;
|
||||
font-size:20px;
|
||||
font-weight:normal;
|
||||
border-bottom:1px dotted #FFF;
|
||||
border-top:3px solid #99CCFF;
|
||||
background:#336699;
|
||||
padding:15px;
|
||||
text-transform:uppercase;
|
||||
letter-spacing: .2em;
|
||||
}
|
||||
|
||||
.description {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#99CCFF;
|
||||
font-size:12px;
|
||||
font-weight:bold;
|
||||
background:#336699;
|
||||
text-transform:none;
|
||||
letter-spacing: .none;
|
||||
}
|
||||
|
||||
#content {
|
||||
float:left;
|
||||
width:65%;
|
||||
background:#fff;
|
||||
border-right:1px dotted #999;
|
||||
margin-right:15px;
|
||||
padding-bottom:20px;
|
||||
}
|
||||
|
||||
#links {
|
||||
background:#fff;
|
||||
padding-right:15px;
|
||||
}
|
||||
|
||||
.blog {
|
||||
padding-left:15px;
|
||||
padding-top:15px;
|
||||
padding-right:15px;
|
||||
}
|
||||
|
||||
.blogbody {
|
||||
font-family:georgia, verdana, arial, sans-serif;
|
||||
color:#333;
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
line-height:14px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
padding-top:10px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: verdana, arial;
|
||||
font-size: 10px;
|
||||
color: #003366;
|
||||
text-transform: uppercase;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
#menu {
|
||||
margin-bottom:15px;
|
||||
background:#FFF;
|
||||
}
|
||||
|
||||
.date {
|
||||
font-family:georgia, verdana, arial, sans-serif;
|
||||
font-size: 11px;
|
||||
color: #666;
|
||||
border:1px solid #999;
|
||||
padding:5px;
|
||||
margin-bottom:10px;
|
||||
font-weight:normal;
|
||||
}
|
||||
|
||||
.posted {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
font-size: 11px;
|
||||
color: #003366;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
|
||||
#calendar {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#666;
|
||||
font-size:10px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
line-height:14px;
|
||||
padding:2px;
|
||||
align:center;
|
||||
}
|
||||
|
||||
.calendarhead {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#003366;
|
||||
font-size:10px;
|
||||
font-weight:bold;
|
||||
background:#FFF;
|
||||
line-height:14px;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.side {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#333;
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
line-height:14px;
|
||||
padding:2px;
|
||||
}
|
||||
|
||||
.sidetitle {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#666;
|
||||
font-size:9px;
|
||||
font-weight:bold;
|
||||
background:#EEE;
|
||||
line-height:14px;
|
||||
padding:2px;
|
||||
margin-top:10px;
|
||||
text-align:center;
|
||||
text-transform:uppercase;
|
||||
letter-spacing: .2em;
|
||||
}
|
||||
|
||||
.syndicate {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
font-size:9px;
|
||||
font-weight:bold;
|
||||
line-height:14px;
|
||||
padding:2px;
|
||||
margin-top:10px;
|
||||
text-align:center;
|
||||
background:#EEE;
|
||||
}
|
||||
|
||||
.powered {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#003366;
|
||||
font-size:9px;
|
||||
font-weight:bold;
|
||||
border-top:1px solid #CCC;
|
||||
border-bottom:1px solid #CCC;
|
||||
line-height:14px;
|
||||
text-transform:uppercase;
|
||||
padding:2px;
|
||||
margin-top:10px;
|
||||
text-align:center;
|
||||
letter-spacing: .2em
|
||||
}
|
||||
|
||||
|
||||
.comments-body {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#666;
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
line-height:14px;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
.comments-post {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#666;
|
||||
font-size:10px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
}
|
||||
|
||||
.comments-head {
|
||||
font-family: georgia, verdana, arial, sans-serif;
|
||||
font-size: 11px;
|
||||
color: #666;
|
||||
border:1px solid #999;
|
||||
padding:5px;
|
||||
font-weight:normal;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
#banner-commentspop {
|
||||
font-family:georgia, verdana, arial, sans-serif;
|
||||
color:#FFF;
|
||||
font-size:16px;
|
||||
font-weight:bold;
|
||||
border-bottom:1px dotted #FFF;
|
||||
border-top:3px solid #99CCFF;
|
||||
background:#336699;
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
.comments-body {
|
||||
font-family:verdana, arial, sans-serif;
|
||||
color:#333;
|
||||
font-size:11px;
|
||||
font-weight:normal;
|
||||
background:#FFF;
|
||||
line-height:12px;
|
||||
padding-left:10px;
|
||||
padding-right:10px;
|
||||
}
|
Reference in New Issue
Block a user