My full list of 60 is marked up in one HTML file, using a TABLE. In the code, the events start after the TBODY tag. Each event has its own table row (TR). It begins like this:
Code: Select all
<table class="events">
<thead>
<tr>
<th id="event-date">Date</th>
<th id="event-title">Title</th>
</tr>
</thead>
<tbody>
<tr class="vevent event-performance">
<th headers="event-date"><abbr class="dtstart" title="2009-10-01T2000+0100">01 Oct 2009</abbr></th>
<td headers="event-title" class="summary"><a href="/events/2009/first-event.html" rel="bookmark">First Event</a></td>
</tr>
<tr class="vevent event-radio">
<th headers="event-date"><abbr class="dtstart" title="2009-10-02T1000+0100">02 Oct 2009</abbr></th>
<td headers="event-title" class="summary"><a href="/events/2009/second-event.html" rel="bookmark">Second Event</a></td>
</tr>
....
I realise that I would need to produce a 'forthcoming events' template and include that in my web pages. I just don't know how to produce that template!
Any help or pointers would be much appreciated!