Would you like to add a different graphic title for each day? Here's a great way to do this with Movable Type and Greymatter.
Make graphics for 12 months (January-December), 31 days (01-31), and/or 7 weekdays (Sunday-Saturday) and/or several years (2002). Be careful to pay attention to the case of the filename (name the file Sunday.gif rather than sunday.gif)
Then set up your date header to show images based on the date:
in Movable Type – put inside the MTEntries container in your Main Index template or anywhere on your Individual Archive template:
<MTDateHeader>
<img src="daygraphics/<$MTEntryDate format="%A"$><img src="daygraphics/<$MTEntryDate format="%B"$>.gif"><img src="daygraphics/<$MTEntryDate format="%d"$>.gif"><img src="daygraphics/<$MTEntryDate format="%y"$>.gif">
</MTDateHeader>
(for a list of all of the date tags available, visit the MT Manual's Date Tag Formats)
in Greymatter – inside the Date Grouping Template:
<img src="daygraphics/{{weekday}}.gif"><img src="daygraphics/{{monthword}}.gif"><img src="daygraphics/{{dayday}}.gif"><img src="daygraphics/{{yearyear}}.gif">
(for a list of all of the template variables, visit the Greymatter Manual)
I have had several requests on the MT boards for this lately, and thought I'd put it together with the GM stuff here for everyone to use