I have the following code which is very commong:
CODE
<MTEntries lastn="7">
<a href="<$MTEntryPermalink archive_type="Individual"$>">
<img src="images/layout/recent.gif" alt="<$MTEntryTitle$>" border="0">
</a>
</MTEntries>
<a href="<$MTEntryPermalink archive_type="Individual"$>">
<img src="images/layout/recent.gif" alt="<$MTEntryTitle$>" border="0">
</a>
</MTEntries>
Which builds a row of 7 instances of the graphic "recent.gif"...
What I would LIKE to do is instead of re-using the same graphic for each of the seven instances, use 7 different graphics.
CODE
recent-1.gif
recent-2.gif
recent-3.gif
recent-2.gif
recent-3.gif
... and so on
I saw a plug in for MTGrid but I don't want to create a table or anything like that... just a simple row of < img > tags.
Thanks!