Add Pagefind search functionality and fix missing images

- Installed Pagefind static search indexing
- Created search page with custom dark theme styling
- Added search to main navigation menu
- Updated deploy script to include Pagefind indexing
- Fixed missing images in birthday and chick legacy pages
- Copied all missing legacy images from archive

🤖 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 18:17:11 -04:00
parent eddd9d2a80
commit 527f0a2640
97 changed files with 3773 additions and 27 deletions

View File

@@ -72,6 +72,11 @@ theme = "m10c"
name = "Tags"
url = "/tags/"
weight = 2
[[menu.main]]
identifier = "search"
name = "Search"
url = "/search/"
weight = 3
[[menu.secondary]]
identifier = "then"
name = "Past"

6
content/search.md Normal file
View File

@@ -0,0 +1,6 @@
---
title: "Search"
layout: "search"
---
Search through over 25 years of blog posts:

2
deploy
View File

@@ -3,6 +3,6 @@ USER=admin
HOST=social
DIR=../../var/www/blog/www # the directory where your web site files should go
hugo && rsync -avz --no-t --no-p --delete public/ ${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder
hugo && pagefind --site public && rsync -avz --no-t --no-p --delete public/ ${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder
exit 0

View File

@@ -0,0 +1,114 @@
{{ define "main" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
<div class="content">
{{ .Content }}
<!-- Pagefind Search UI -->
<div id="search"></div>
<!-- Pagefind CSS -->
<link href="/pagefind/pagefind-ui.css" rel="stylesheet">
<!-- Pagefind JS -->
<script src="/pagefind/pagefind-ui.js"></script>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
new PagefindUI({
element: "#search",
showSubResults: true,
showImages: false,
excerptLength: 15
});
});
</script>
<style>
/* Custom styles for Pagefind */
.pagefind-ui {
max-width: none;
}
.pagefind-ui__search-input {
font-size: 1.1rem;
padding: 0.75rem;
background: #fff;
color: #333;
}
.pagefind-ui__result {
border: 1px solid #555;
background: rgba(30, 30, 30, 0.8);
margin-bottom: 1rem;
padding: 1.25rem;
border-radius: 8px;
}
.pagefind-ui__result-title {
font-size: 1.4rem;
margin-bottom: 0.5rem;
color: #ffffff !important;
}
.pagefind-ui__result-link {
color: #6bb3ff !important;
text-decoration: none;
font-weight: 600;
}
.pagefind-ui__result-link:hover {
text-decoration: underline;
color: #89c7ff !important;
}
.pagefind-ui__result-excerpt {
font-size: 1.05rem;
line-height: 1.7;
color: #ffffff;
margin-top: 0.5rem;
opacity: 0.9;
}
.pagefind-ui__result-excerpt mark {
background: #ffeb3b;
color: #000;
padding: 2px 4px;
border-radius: 3px;
font-weight: 600;
}
.pagefind-ui__button {
background: #4a9eff;
color: #fff;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
}
.pagefind-ui__button:hover {
background: #6bb3ff;
}
.pagefind-ui__message {
color: #ffffff;
font-size: 1.1rem;
padding: 1rem;
opacity: 0.8;
}
.pagefind-ui__drawer {
margin-top: 2rem;
}
/* Force all text to be visible */
.pagefind-ui__result-inner {
color: #ffffff !important;
}
.pagefind-ui__result-inner * {
color: inherit !important;
}
.pagefind-ui__result-inner .pagefind-ui__result-title {
color: #ffffff !important;
}
.pagefind-ui__result-inner .pagefind-ui__result-link {
color: #6bb3ff !important;
}
.pagefind-ui__result-inner h3 {
color: #ffffff !important;
}
</style>
</div>
</article>
{{ end }}

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -16,39 +16,39 @@
<img src="Title.jpg">
<br><br>
<img src="Image0.jpg"><br>
<a href="http://www.ericwagoner.com/birthday/BigImage1.jpg"><img border=0 src="Image1.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage3.jpg"><img border=0 src="Image3.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage4.jpg"><img border=0 src="Image4.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage5.jpg"><img border=0 src="Image5.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage6.jpg"><img border=0 src="Image6.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage7.jpg"><img border=0 src="Image7.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage8.jpg"><img border=0 src="Image8.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage11.jpg"><img border=0 src="Image11.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage13.jpg"><img border=0 src="Image13.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage14.jpg"><img border=0 src="Image14.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage27.jpg"><img border=0 src="Image27.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage15.jpg"><img border=0 src="Image15.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage19.jpg"><img border=0 src="Image19.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage20.jpg"><img border=0 src="Image20.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage26.jpg"><img border=0 src="Image26.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage28.jpg"><img border=0 src="Image28.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage29.jpg"><img border=0 src="Image29.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage31.jpg"><img border=0 src="Image31.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage32.jpg"><img border=0 src="Image32.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage34.jpg"><img border=0 src="Image34.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage36.jpg"><img border=0 src="Image36.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage37.jpg"><img border=0 src="Image37.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage39.jpg"><img border=0 src="Image39.jpg"></a><br>
<a href="http://www.ericwagoner.com/birthday/BigImage40.jpg"><img border=0 src="Image40.jpg"></a><br>
<a href="/legacy/birthday/BigImage1.jpg"><img border=0 src="Image1.jpg"></a><br>
<a href="/legacy/birthday/BigImage3.jpg"><img border=0 src="Image3.jpg"></a><br>
<a href="/legacy/birthday/BigImage4.jpg"><img border=0 src="Image4.jpg"></a><br>
<a href="/legacy/birthday/BigImage5.jpg"><img border=0 src="Image5.jpg"></a><br>
<a href="/legacy/birthday/BigImage6.jpg"><img border=0 src="Image6.jpg"></a><br>
<a href="/legacy/birthday/BigImage7.jpg"><img border=0 src="Image7.jpg"></a><br>
<a href="/legacy/birthday/BigImage8.jpg"><img border=0 src="Image8.jpg"></a><br>
<a href="/legacy/birthday/BigImage11.jpg"><img border=0 src="Image11.jpg"></a><br>
<a href="/legacy/birthday/BigImage13.jpg"><img border=0 src="Image13.jpg"></a><br>
<a href="/legacy/birthday/BigImage14.jpg"><img border=0 src="Image14.jpg"></a><br>
<a href="/legacy/birthday/BigImage27.jpg"><img border=0 src="Image27.jpg"></a><br>
<a href="/legacy/birthday/BigImage15.jpg"><img border=0 src="Image15.jpg"></a><br>
<a href="/legacy/birthday/BigImage19.jpg"><img border=0 src="Image19.jpg"></a><br>
<a href="/legacy/birthday/BigImage20.jpg"><img border=0 src="Image20.jpg"></a><br>
<a href="/legacy/birthday/BigImage26.jpg"><img border=0 src="Image26.jpg"></a><br>
<a href="/legacy/birthday/BigImage28.jpg"><img border=0 src="Image28.jpg"></a><br>
<a href="/legacy/birthday/BigImage29.jpg"><img border=0 src="Image29.jpg"></a><br>
<a href="/legacy/birthday/BigImage31.jpg"><img border=0 src="Image31.jpg"></a><br>
<a href="/legacy/birthday/BigImage32.jpg"><img border=0 src="Image32.jpg"></a><br>
<a href="/legacy/birthday/BigImage34.jpg"><img border=0 src="Image34.jpg"></a><br>
<a href="/legacy/birthday/BigImage36.jpg"><img border=0 src="Image36.jpg"></a><br>
<a href="/legacy/birthday/BigImage37.jpg"><img border=0 src="Image37.jpg"></a><br>
<a href="/legacy/birthday/BigImage39.jpg"><img border=0 src="Image39.jpg"></a><br>
<a href="/legacy/birthday/BigImage40.jpg"><img border=0 src="Image40.jpg"></a><br>
<img src="Image40A.jpg"><br>
<img src="Image40B.jpg"><br>
<img src="Image40C.jpg"><br>
<a href="http://www.ericwagoner.com/birthday/BigImage47.jpg"><img border=0 src="Image47.jpg"></a><br>
<a href="/legacy/birthday/BigImage47.jpg"><img border=0 src="Image47.jpg"></a><br>
<br>
<br>
All images taken by Steve Wildey, except those that he's in. Those were taken by Amy. You can click on them to make them much, much bigger.<br>
<br>
<font size=+3><a href="http://www.ericwagoner.com/weblog/">Return to Kestrel's Nest</a></font><br>
<font size=+3><a href="/">Return to Kestrel's Nest</a></font><br>
<br>
<br>
<br>

BIN
static/legacy/chick/1.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
static/legacy/chick/10.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

BIN
static/legacy/chick/13.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/14.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/15.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/16.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

BIN
static/legacy/chick/17.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/18.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

BIN
static/legacy/chick/19.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
static/legacy/chick/2.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/22.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
static/legacy/chick/3.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
static/legacy/chick/4.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
static/legacy/chick/5.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/6.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/7.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
static/legacy/chick/8.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
static/legacy/chick/9.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\godot.gif <-- phpWebHosting /www/weblog/godot godot.gif
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\godot.html <-- phpWebHosting /www/weblog/godot godot.html
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\godotscript.doc <-- phpWebHosting /www/weblog/godot godotscript.doc
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\godotscript.htm <-- phpWebHosting /www/weblog/godot godotscript.htm
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\godot.gif --> quantum.phpwebhosting.com /www/weblog/godot godot.gif
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\godot.html --> quantum.phpwebhosting.com /www/weblog/godot godot.html
2002.03.08 16:12 B X:\eric\tmp\www\weblog\godot\godotscript.doc --> quantum.phpwebhosting.com /www/weblog/godot godotscript.doc
2002.03.08 16:12 A X:\eric\tmp\www\weblog\godot\godotscript.htm --> quantum.phpwebhosting.com /www/weblog/godot godotscript.htm

View File

@@ -0,0 +1,24 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
</head>
<body>
<h1>Weblog for Godot</h1>
More text to come.
<!-- created by Blogger! -->
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
-->
<P><BR>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
</body>
</html>

View File

@@ -0,0 +1,190 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
<STYLE type="text/css">
BODY, TD { background: #8cbdf7; color: black; font: "Book Antigua" }
TH { background: black; color: white }
A:active { background: black; color: white }
</STYLE>
</head>
<body>
<table>
<tr>
<td colspan=3 align=center><img src="godot.gif" width=500 height=100 align=middle alt="" border=0><br><hr></td>
</tr>
<tr>
<td colspan=3>I will be directing Beckett's <i>Waiting For Godot</i> for <a href="http://www.negia.net/~tandg/">Town & Gown's</a> Second Stage season on April 14-16. This weblog will be a resource for me, for my actors and crew, and for anyone else with an interest in <i>Godot</i>. If you have anything that you would like to share with the other readers here, please send them to me at <a href="mailto:eric@ericwagoner.com?subject=Godot">eric@ericwagoner.com</a>.</td>
</tr>
<tr>
<td colspan=3><hr>
</td>
</tr>
<tr>
<td valign=top width=33%>
<table>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Script: <a href="godotscript.htm">HTML</a> or <a href="godotscript.doc">MS Word 97</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/aboutme.html">About me</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/">Kestrel's Nest -- My main page</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Search Kestrel's Nest</th>
</tr>
<tr>
<td>
<!-- Atomz.com Search HTML for Kestrel's Nest Weblog -->
<form method="get" action="http://search.atomz.com/search/">
<input size=33 name="sp-q"><br>
<input type=submit value="Search">
<input type=hidden name="sp-a" value="0002123a-sp00000000">
</form>
</td>
</tr>
<tr>
<td>Engine provided by <a href="http://www.atomz.com">AtomZ</a>, free of charge.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Athens Theater Links</th>
</tr>
<tr>
<td>
<a href="http://www.negia.net/~tandg/">Town and Gown Players</a><br>
<a href="http://www.flagpole.com">The Flagpole</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top>
<table>
<!-- created by Blogger! -->
<tr><th align=left>Monday, January 24, 2000</th></tr>
<tr><td>
<blockquote>
I've uploaded the script we'll be using. There's a <a href="godotscript.doc">MS Word 97 version</a> and an <a href="godotscript.htm">HTML version</a>. I've cast Pozzo as a female, so this script has pronoun changes and some of the stage directions have been re-written to reflect our stage.
<br>
<font size="1">
<b>1/24/00 8:25:41 AM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Wednesday, January 12, 2000</th></tr>
<tr><td>
<blockquote>
<a href="http://www.thespark.com/sparknotes/guides/godot/">Here's a nice summary of the play</a>. If found yourself here but don't know what all the hubbub's about, take a look there.
<br>
<font size="1">
<b>1/12/00 10:33:13 AM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left><a href="http://www.ericwagoner.com/weblog/archive/archive.html">Archives</a></th></tr>
</table>
</td>
</tr>
</table>
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
BlogDateHeader
dollarsignBlogDateHeaderDatedollarsign
-->
<P><BR>
<a href="mailto:eric@ericwagoner.com?subject=Kestrel's Nest">email me</a>
<br>
<br>
<br>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
<!-- Start of NedStat Basic code -->
<a href="http://usa.nedstatbasic.net/cgi-bin/viewstat?name=KestrelsNest"><img
src="http://usa.nedstatbasic.net/cgi-bin/nedstat.gif?name=KestrelsNest"
border=0 alt="" nosave width=22 height=22></a>
<!-- End of NedStat Basic code -->
<!--------------- Start ReferStat --------------->
<script type="text/javascript" language="JavaScript">
<!--
d=document;
d.write("<img src=\"http://usa.nedstatbasic.net");
d.write("/cgi-bin/referstat.gif?");
d.write("name=KestrelsNest&amp;amp;amp;amp;amp;refer=");
d.write(escape(top.document.referrer));
d.write("\" width=1 height=1 align=\"right\">");
// -->
</script>
<!---------------- End ReferStat ---------------->
</body>
</html>

View File

@@ -0,0 +1,206 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
<STYLE type="text/css">
BODY, TD { background: #8cbdf7; color: black; font: "Book Antigua" }
TH { background: black; color: white }
A:active { background: black; color: white }
</STYLE>
</head>
<body>
<table>
<tr>
<td colspan=3 align=center><img src="godot.gif" width=500 height=100 align=middle alt="" border=0><br><hr></td>
</tr>
<tr>
<td colspan=3>I will be directing Beckett's <i>Waiting For Godot</i> for <a href="http://www.negia.net/~tandg/">Town & Gown's</a> Second Stage season on April 14-16. This weblog will be a resource for me, for my actors and crew, and for anyone else with an interest in <i>Godot</i>. If you have anything that you would like to share with the other readers here, please send them to me at <a href="mailto:eric@ericwagoner.com?subject=Godot">eric@ericwagoner.com</a>.</td>
</tr>
<tr>
<td colspan=3><hr>
</td>
</tr>
<tr>
<td valign=top width=33%>
<table>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Script: <a href="godotscript.htm">HTML</a> or <a href="godotscript.doc">MS Word 97</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/aboutme.html">About me</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/">Kestrel's Nest -- My main page</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Search Kestrel's Nest</th>
</tr>
<tr>
<td>
<!-- Atomz.com Search HTML for Kestrel's Nest Weblog -->
<form method="get" action="http://search.atomz.com/search/">
<input size=33 name="sp-q"><br>
<input type=submit value="Search">
<input type=hidden name="sp-a" value="0002123a-sp00000000">
</form>
</td>
</tr>
<tr>
<td>Engine provided by <a href="http://www.atomz.com">AtomZ</a>, free of charge.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Athens Theater Links</th>
</tr>
<tr>
<td>
<a href="http://www.negia.net/~tandg/">Town and Gown Players</a><br>
<a href="http://www.flagpole.com">The Flagpole</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top>
<table>
<!-- created by Blogger! -->
<tr><th align=left>Wednesday, February 23, 2000</th></tr>
<tr><td>
<blockquote>
<a href="http://classes.colgate.edu/fsem018/">Here is the homepage</a> for the Colgate class whose annotated script I linked to the other day. It seems the entire focus of the class was Lucky's single speech. A whole semester of that? I dunno... could be fun, I guess. The page does have a scanned in cover of the script book with the art I shamelessly stole for this weblog's title graphic.
<br>
<font size="1">
<b>2/23/00 5:49:39 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td>
<blockquote>
<a href="http://www.ericwagoner.com/weblog/godot/images/godot1.gif"><img src="http://www.ericwagoner.com/weblog/godot/images/godot1thumb.gif" alt="The Boy -- Gogo -- Didi" align=left></a><a href="http://www.ericwagoner.com/weblog/godot/images/godot2.gif"><img src="http://www.ericwagoner.com/weblog/godot/images/godot2thumb.gif" alt="Didi -- Lucky (obscured) -- Pozzo" align=left></a>Rehearsals have begun. Here's the cast at our first read-through.
<br>
<font size="1">
<b>2/23/00 5:28:17 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Friday, February 18, 2000</th></tr>
<tr><td>
<blockquote>
From UGA English department's Matt Kozusko came Colgate University's <a href="http://classes.colgate.edu/fsem018/texts/Txt_WfG/txtcomm.htm">online annotated script</a> for <i>Waiting for Godot</i>. Dr. Kozusko is teaching the play to his freshman students here in Athens, and will be finishing the unit just in time for them to come see the production. He found this weblog (and learned of the performance) after searching the web for resources.
<br>
<font size="1">
<b>2/18/00 4:14:38 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left><a href="http://www.ericwagoner.com/weblog/archive/archive.html">Archives</a></th></tr>
</table>
</td>
</tr>
</table>
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
BlogDateHeader
dollarsignBlogDateHeaderDatedollarsign
-->
<P><BR>
<a href="mailto:eric@ericwagoner.com?subject=Kestrel's Nest">email me</a>
<br>
<br>
<br>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
<!-- Start of NedStat Basic code -->
<a href="http://usa.nedstatbasic.net/cgi-bin/viewstat?name=KestrelsNest"><img
src="http://usa.nedstatbasic.net/cgi-bin/nedstat.gif?name=KestrelsNest"
border=0 alt="" nosave width=22 height=22></a>
<!-- End of NedStat Basic code -->
<!--------------- Start ReferStat --------------->
<script type="text/javascript" language="JavaScript">
<!--
d=document;
d.write("<img src=\"http://usa.nedstatbasic.net");
d.write("/cgi-bin/referstat.gif?");
d.write("name=KestrelsNest&refer=");
d.write(escape(top.document.referrer));
d.write("\" width=1 height=1 align=\"right\">");
// -->
</script>
<!---------------- End ReferStat ---------------->
</body>
</html>

View File

@@ -0,0 +1,260 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
<STYLE type="text/css">
BODY, TD { background: #8cbdf7; color: black; font: "Book Antigua" }
TH { background: black; color: white }
A:active { background: black; color: white }
</STYLE>
</head>
<body>
<table>
<tr>
<td colspan=3 align=center><img src="godot.gif" width=500 height=100 align=middle alt="" border=0><br><hr></td>
</tr>
<tr>
<td colspan=3>I will be directing Beckett's <i>Waiting For Godot</i> for <a href="http://www.negia.net/~tandg/">Town & Gown's</a> Second Stage season on April 14-16. This weblog will be a resource for me, for my actors and crew, and for anyone else with an interest in <i>Godot</i>. If you have anything that you would like to share with the other readers here, please send them to me at <a href="mailto:eric@ericwagoner.com?subject=Godot">eric@ericwagoner.com</a>.</td>
</tr>
<tr>
<td colspan=3><hr>
</td>
</tr>
<tr>
<td valign=top width=33%>
<table>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Dates</th>
</tr>
<tr><td>April 14-16, 2000</td></tr>
<tr><td>8:15 Fri & Sat</td></tr>
<tr><td>2:15 Sunday</td></tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Tickets</th>
</tr>
<tr><td>$5 General Admission</td></tr>
<tr><td>$4 Students, Seniors, Members</td></tr>
<tr><td>Box Office opens one hour prior to curtain. Come early to insure a seat. The buzz has started, and this show may sell out.</td><tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Venue</th>
</tr>
<tr>
<td><a href="http://www.negia.net/~tandg/about.html#B">Athens Community Theater</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Script: <a href="godotscript.htm">HTML</a> or <a href="godotscript.doc">MS Word 97</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/aboutme.html">About me</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/">Kestrel's Nest -- My main page</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Search Kestrel's Nest</th>
</tr>
<tr>
<td>
<!-- Atomz.com Search HTML for Kestrel's Nest Weblog -->
<form method="get" action="http://search.atomz.com/search/">
<input size=33 name="sp-q"><br>
<input type=submit value="Search">
<input type=hidden name="sp-a" value="0002123a-sp00000000">
</form>
</td>
</tr>
<tr>
<td>Engine provided by <a href="http://www.atomz.com">AtomZ</a>, free of charge.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Athens Theater Links</th>
</tr>
<tr>
<td>
<a href="http://www.negia.net/~tandg/">Town and Gown Players</a><br>
<a href="http://www.flagpole.com">The Flagpole</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top>
<table>
<!-- created by Blogger! -->
<tr><th align=left>Monday, March 20, 2000</th></tr>
<tr><td>
<blockquote>
I've been hanging two teaser posters about town. Here they are: <a href="images/godotposter1.gif">The first</a> and <a href="images/godotposter2.gif">the second</a>.
<br>
<font size="1">
<b>3/20/00 3:50:07 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Friday, March 17, 2000</th></tr>
<tr><td>
<blockquote>
When this weblog first went public, I received an email from <a href="http://www.aphrodigitaliac.com/mm/">Gary Baum</a> in California. His license plates read W8N4GDO, and he's <a href="http://www.aphrodigitaliac.com/mm/archive/1999/11/22/">written a very nice essay</a> about the reactions he's gotten from them. Somehow I forgot to post this then.
<br>
<font size="1">
<b>3/17/00 3:38:21 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td>
<blockquote>
Oh yes... I lost my Lucky due to a conflict with another show in town that weekend he'd already committed to. I'll now be playing the part.
<br>
<font size="1">
<b>3/17/00 3:31:11 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td>
<blockquote>
Act One is now officially blocked. That means that the actors all know when and where to move as well as how and what and when to talk. We'll finish Act Two next week, and it'll be all repetition from there.
<br>
<font size="1">
<b>3/17/00 3:29:05 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left><a href="http://www.ericwagoner.com/weblog/archive/archive.html">Archives</a></th></tr>
</table>
</td>
</tr>
</table>
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
BlogDateHeader
dollarsignBlogDateHeaderDatedollarsign
-->
<P><BR>
<a href="mailto:eric@ericwagoner.com?subject=Kestrel's Nest">email me</a>
<br>
<br>
<br>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
<!-- Start of NedStat Basic code -->
<a href="http://usa.nedstatbasic.net/cgi-bin/viewstat?name=KestrelsNest"><img
src="http://usa.nedstatbasic.net/cgi-bin/nedstat.gif?name=KestrelsNest"
border=0 alt="" nosave width=22 height=22></a>
<!-- End of NedStat Basic code -->
<!--------------- Start ReferStat --------------->
<script type="text/javascript" language="JavaScript">
<!--
d=document;
d.write("<img src=\"http://usa.nedstatbasic.net");
d.write("/cgi-bin/referstat.gif?");
d.write("name=KestrelsNest&amp;amp;refer=");
d.write(escape(top.document.referrer));
d.write("\" width=1 height=1 align=\"right\">");
// -->
</script>
<!---------------- End ReferStat ---------------->
</body>
</html>

View File

@@ -0,0 +1,263 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
<STYLE type="text/css">
BODY, TD { background: #8cbdf7; color: black; font: "Book Antigua" }
TH { background: black; color: white }
A:active { background: black; color: white }
</STYLE>
</head>
<body>
<table>
<tr>
<td colspan=3 align=center><img src="godot.gif" width=500 height=100 align=middle alt="" border=0><br><hr></td>
</tr>
<tr>
<td colspan=3>I will be directing Beckett's <i>Waiting For Godot</i> for <a href="http://www.negia.net/~tandg/">Town & Gown's</a> Second Stage season on April 14-16. This weblog will be a resource for me, for my actors and crew, and for anyone else with an interest in <i>Godot</i>. If you have anything that you would like to share with the other readers here, please send them to me at <a href="mailto:eric@ericwagoner.com?subject=Godot">eric@ericwagoner.com</a>.</td>
</tr>
<tr>
<td colspan=3><hr>
</td>
</tr>
<tr>
<td valign=top width=33%>
<table>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Dates</th>
</tr>
<tr><td>April 14-16, 2000</td></tr>
<tr><td>8:15 Fri & Sat</td></tr>
<tr><td>2:15 Sunday</td></tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Tickets</th>
</tr>
<tr><td>$5 General Admission</td></tr>
<tr><td>$4 Students, Seniors, Members</td></tr>
<tr><td>Box Office opens one hour prior to curtain. Come early to insure a seat. The buzz has started, and this show may sell out.</td><tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Venue</th>
</tr>
<tr>
<td><a href="http://www.negia.net/~tandg/about.html#B">Athens Community Theater</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Script: <a href="godotscript.htm">HTML</a> or <a href="godotscript.doc">MS Word 97</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/aboutme.html">About me</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/">Kestrel's Nest -- My main page</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Search Kestrel's Nest</th>
</tr>
<tr>
<td>
<!-- Atomz.com Search HTML for Kestrel's Nest Weblog -->
<form method="get" action="http://search.atomz.com/search/">
<input size=33 name="sp-q"><br>
<input type=submit value="Search">
<input type=hidden name="sp-a" value="0002123a-sp00000000">
</form>
</td>
</tr>
<tr>
<td>Engine provided by <a href="http://www.atomz.com">AtomZ</a>, free of charge.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Athens Theater Links</th>
</tr>
<tr>
<td>
<a href="http://www.negia.net/~tandg/">Town and Gown Players</a><br>
<a href="http://www.flagpole.com">The Flagpole</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top>
<table>
<!-- created by Blogger! -->
<tr><th align=left>Monday, April 17, 2000</th></tr>
<tr><td>
<blockquote>
<a href="http://www.tiac.net/users/cri/godot.html"><i>Waiting for Godot</i> in various modes</a>.
<br>
<font size="1">
<b>4/17/2000 9:03:02 AM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Friday, April 14, 2000</th></tr>
<tr><td>
<blockquote>
The show begins in three hours. The final rehearsal was rough, but I've had roughter dress rehearsals, and there were some outright brilliant spots. Knowing my actors, this'll turn out to be one heck of a good show.<br><br>And then I'll sleep...
<br>
<font size="1">
<b>4/14/2000 5:22:12 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Thursday, April 13, 2000</th></tr>
<tr><td>
<blockquote>
Last night's rehearsals went very well. My cast is returning to high spirits, and that makes things much better for everyone. The stage is complete, the lighting is done (and boy howdy does it look nice), and I'm putting the finishing touches on the incidental music - Kronos Quartet's <i>Different Trains</i>, Gardiner's conduction of Beethoven's <i>Symphony No 9 Allegro Assai (Ode to Joy)</i>, and Cake's <i>Prolong the Magic</i>. One last rehearsal tonight, and then it's showtime.
<br>
<font size="1">
<b>4/13/2000 12:29:07 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left>Wednesday, April 12, 2000</th></tr>
<tr><td>
<blockquote>
The show opens in two days. This last week has been a challenge... my actors, all of them wonderful, fine actors, now realize just how difficult the roles are. Those of you that have read the script know how non-linear the lines are. Conversations are intertwined, non sequiters abound. Now that I think about it, it's not too different from a chatroom conversation, or email, or newsgroups for that matter. But imagine if you had to speak the same way you type. My actors have found it very difficult, and now there's doubt in their minds if they'll be ready in time. I think we will -- I've seen far greater miracles in theater. But it's draining them and me. So much of the show depends on the pacing. I feel more like a conductor than a director with this script, waving my baton and scowling at the bassoons falling farther and farther behind.<br><br>
Don't get me wrong. It'll be a fine, fine show. It could still be a great show. In any event, it's been a tremendous amount of work. I'll be glad to see it done, but proud of what we've done. If you're reading this and you're here in Athens, I hope you come see the show.<br><br>
<i>Hope deferred maketh the something sick. Sometimes I feel it coming all the same. And then I go all queer. Relieved, and at the same time ... appalled. Appalled!</i> -- Vladimir
<br>
<font size="1">
<b>4/12/2000 2:31:53 PM</b>
</font><br>
<br>
</blockquote>
<p>
</td></tr>
<tr><td><br></td></tr>
<tr><th align=left><a href="http://www.ericwagoner.com/weblog/archive/archive.html">Archives</a></th></tr>
</table>
</td>
</tr>
</table>
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
BlogDateHeader
dollarsignBlogDateHeaderDatedollarsign
-->
<P><BR>
<a href="mailto:eric@ericwagoner.com?subject=Kestrel's Nest">email me</a>
<br>
<br>
<br>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
<!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" -->
<script type="text/javascript" language="JavaScript">var site="sm3kestrelsnest"</script>
<script type="text/javascript" language="JavaScript1.2" src="http://sm3.sitemeter.com/js/counter.js?site=sm3kestrelsnest">
</script>
<noscript>
<a href="http://sm3.sitemeter.com/stats.asp?site=sm3kestrelsnest" target=top>
<img src="http://sm3.sitemeter.com/meter.asp?site=sm3kestrelsnest" title="Site Meter" border=0></a>
</noscript>
<!-- Copyright (c)2000 Site Meter -->
<!--WEBBOT bot="HTMLMarkup" Endspan -->
</body>
</html>

View File

@@ -0,0 +1,12 @@
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\1999_12_01_archive.html <-- phpWebHosting /www/weblog/godot/archive 1999_12_01_archive.html
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\2000_01_01_archive.html <-- phpWebHosting /www/weblog/godot/archive 2000_01_01_archive.html
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\2000_02_01_archive.html <-- phpWebHosting /www/weblog/godot/archive 2000_02_01_archive.html
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\2000_03_01_archive.html <-- phpWebHosting /www/weblog/godot/archive 2000_03_01_archive.html
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\2000_04_01_archive.html <-- phpWebHosting /www/weblog/godot/archive 2000_04_01_archive.html
2002.03.08 14:45 A X:\eric\tmp\www\weblog\godot\archive\archive.html <-- phpWebHosting /www/weblog/godot/archive archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\1999_12_01_archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive 1999_12_01_archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\2000_01_01_archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive 2000_01_01_archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\2000_02_01_archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive 2000_02_01_archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\2000_03_01_archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive 2000_03_01_archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\2000_04_01_archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive 2000_04_01_archive.html
2002.03.08 16:11 A X:\eric\tmp\www\weblog\godot\archive\archive.html --> quantum.phpwebhosting.com /www/weblog/godot/archive archive.html

View File

@@ -0,0 +1,173 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Weblog for Godot</title>
<STYLE type="text/css">
BODY, TD { background: #8cbdf7; color: black; font: "Book Antigua" }
TH { background: black; color: white }
A:active { background: black; color: white }
</STYLE>
</head>
<body>
<table>
<tr>
<td colspan=3 align=center><img src="godot.gif" width=500 height=100 align=middle alt="" border=0><br><hr></td>
</tr>
<tr>
<td colspan=3>I will be directing Beckett's <i>Waiting For Godot</i> for <a href="http://www.negia.net/~tandg/">Town & Gown's</a> Second Stage season on April 14-16. This weblog will be a resource for me, for my actors and crew, and for anyone else with an interest in <i>Godot</i>. If you have anything that you would like to share with the other readers here, please send them to me at <a href="mailto:eric@ericwagoner.com?subject=Godot">eric@ericwagoner.com</a>.</td>
</tr>
<tr>
<td colspan=3><hr>
</td>
</tr>
<tr>
<td valign=top width=33%>
<table>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Dates</th>
</tr>
<tr><td>April 14-16, 2000</td></tr>
<tr><td>8:15 Fri & Sat</td></tr>
<tr><td>2:15 Sunday</td></tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Tickets</th>
</tr>
<tr><td>$5 General Admission</td></tr>
<tr><td>$4 Students, Seniors, Members</td></tr>
<tr><td>Box Office opens one hour prior to curtain. Come early to insure a seat. The buzz has started, and this show may sell out.</td><tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Venue</th>
</tr>
<tr>
<td><a href="http://www.negia.net/~tandg/about.html#B">Athens Community Theater</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>The Script: <a href="godotscript.htm">HTML</a> or <a href="godotscript.doc">MS Word 97</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/aboutme.html">About me</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center><a href="http://www.ericwagoner.com/weblog/">Kestrel's Nest -- My main page</a></th>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Search Kestrel's Nest</th>
</tr>
<tr>
<td>
<!-- Atomz.com Search HTML for Kestrel's Nest Weblog -->
<form method="get" action="http://search.atomz.com/search/">
<input size=33 name="sp-q"><br>
<input type=submit value="Search">
<input type=hidden name="sp-a" value="0002123a-sp00000000">
</form>
</td>
</tr>
<tr>
<td>Engine provided by <a href="http://www.atomz.com">AtomZ</a>, free of charge.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border=0 width=250>
<tr>
<th align=center>Athens Theater Links</th>
</tr>
<tr>
<td>
<a href="http://www.negia.net/~tandg/">Town and Gown Players</a><br>
<a href="http://www.flagpole.com">The Flagpole</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign=top>
<table>
<!-- created by Blogger! -->
<a href="2000_02_01_archive.html">2/1/2000 - 2/29/2000</a><br>
<a href="2000_03_01_archive.html">3/1/2000 - 3/31/2000</a><br>
<a href="2000_04_01_archive.html">4/1/2000 - 4/30/2000</a><br>
<tr><th align=left><a href="http://www.ericwagoner.com/weblog/archive/archive.html">Archives</a></th></tr>
</table>
</td>
</tr>
</table>
<!--
if you like this service, please leave this link-back in -
or link to us somewhere from your blog, thanks!
BlogDateHeader
dollarsignBlogDateHeaderDatedollarsign
-->
<P><BR>
<a href="mailto:eric@ericwagoner.com?subject=Kestrel's Nest">email me</a>
<br>
<br>
<br>
<a href="http://www.blogger.com"><img width=88 height=31 src="http://www.blogger.com/images/blogger_button.gif" border=0 alt="Powered by Blogger"></a>
<!--WEBBOT bot="HTMLMarkup" startspan ALT="Site Meter" -->
<script type="text/javascript" language="JavaScript">var site="sm3kestrelsnest"</script>
<script type="text/javascript" language="JavaScript1.2" src="http://sm3.sitemeter.com/js/counter.js?site=sm3kestrelsnest">
</script>
<noscript>
<a href="http://sm3.sitemeter.com/stats.asp?site=sm3kestrelsnest" target=top>
<img src="http://sm3.sitemeter.com/meter.asp?site=sm3kestrelsnest" title="Site Meter" border=0></a>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@@ -0,0 +1,12 @@
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godot1.gif <-- phpWebHosting /www/weblog/godot/images godot1.gif
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godot1thumb.gif <-- phpWebHosting /www/weblog/godot/images godot1thumb.gif
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godot2.gif <-- phpWebHosting /www/weblog/godot/images godot2.gif
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godot2thumb.gif <-- phpWebHosting /www/weblog/godot/images godot2thumb.gif
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godotposter1.gif <-- phpWebHosting /www/weblog/godot/images godotposter1.gif
2002.03.08 14:45 B X:\eric\tmp\www\weblog\godot\images\godotposter2.gif <-- phpWebHosting /www/weblog/godot/images godotposter2.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godot1.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godot1.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godot1thumb.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godot1thumb.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godot2.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godot2.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godot2thumb.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godot2thumb.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godotposter1.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godotposter1.gif
2002.03.08 16:11 B X:\eric\tmp\www\weblog\godot\images\godotposter2.gif --> quantum.phpwebhosting.com /www/weblog/godot/images godotposter2.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB