"Nothing Happens At Ten" Blog Custom Tags

These are the custom tags that I created to make the Nothing Happens At Ten blog work. They insert my photo, my links, my Copyright, and any other extra things that are in the blog. If you copy these, you will have to modify them to make them apply to your particular situation.

Note

To make these work, I had to import into the main folder the images plus the hitcounter and the search page programs. Two of the images went into the media folder

Back to the Blog

First, I commented out all of the "categories" tags because I don't use them.


<$Favicon$> - Goes in all templates under the stylesheet link.

<link rel="icon" type="image/x-icon" 
href="http://www.thekimerers.com/brian/blogs/NHAT/favicon.ico" />

<$Avatar$> - First thing in the table after <div id="links">

<p align="center">
<IMG src="http://www.thekimerers.com/brian/blogs/NHAT/media/avatar_9680.jpg" 
width="100" height="100" align="middle" border="0">
</p>

<$Bio$> - Second thing in the table after <div id="links">

<div class="side"> 
<p align="left">
I am a software engineer by vocation and an artist by avocation. 
For fun I build and play 
banjos and paint pictures. To see some of my work,
go to 
<a href=http://www.thekimerers.com/brian/>My Home Page</a>.
</p>
</div>

<$RssLogo$> - right after <$RssLink$>

<IMG src="http://www.thekimerers.com/brian/blogs/NHAT/media/RSS-Logo32.gif" 
width="32" height="32" align="middle" border="0">

<$FavoriteLinks$> - replaces the <$Categories$>, which is commented out

<div class="sidetitle">Favorite Links</div> 
<div class="side"> 
<a href=http://www.thekimerers.com/brian/>My Home Page</a><br> 
<a href=http://www.thekimerers.com/brian/blogs/TAMB/index.php>Thingamablog Blog</a><br> 
<a href=http://www.readingart.org/>Reading Art Association</a><br> 
</div> 

<$PhpSearch$> - in the sidebar before the credits and after the links.
ONLY ON THE FRONT PAGE

<div class="sidetitle">Internal Site Search</div>
<div class="side">
<center>
    <table border="3" align="center" CELLPADDING="10">
    <tr><td align="center">
    <form action="nhat_search.php" method="post">
    <input type="text" name="pattern" /><br><br>
    <input type="submit" value="Search NHAT Blog"/>
    </form>
    </tr></td>
    </table>
</center>
</div>

<$Copyright$> - just before the end of the table - before </td></tr>

<p align="center">
This site and all of its contents are 
copyright &copy; Brian S. Kimerer 2009
</p>

<$HitCounter$> - at the end of the table just after the copyright tag.
ONLY ON THE FRONT PAGE

<div align="center">
<p>
<b>
We have had the pleasure of hosting
<?php
include ("simplehitcounter.php");
?>
guests since this site was created on July 17, 2009.
</b>
</p>
</div>