<tr> <th></th> <?php for ($day = 1; $day <= 3; $day++) { echo '<th>' . Vortrag::day_string($day) . '</th>'; } ?> </tr> </thead> <tbody> <?php for ($slot = 1; $slot <= 6; $slot++) { echo '<tr><th>' . Vortrag::slot_string($slot) . '</th>'; for ($day = 1; $day <= 3; $day++) { echo '<td>'; foreach (Vortrag::vortraege_in_timeslot($day, $slot) as $vortrag) { echo $vortrag->tableItem(); } echo '</td>'; } echo '</tr>'; } ?> </tbody> </table> </div> <p>Eine Übersicht als PDF findet Ihr hier als <a href="http://www.heidelberger-symposium.de/download/Veranstaltungsplan_2015.pdf" target="_blank">Download</a>.</p> <!--p>Am 10.05 findet ab 23.00 Uhr eine Abschlussparty für alle Teilnehmer im KlubK am Karlstorbahnhof statt. Line-up:</p> <li><a href="https://soundcloud.com/fraukreis">Frau Kreis</a></li>
if (count($current_vortraege) > 0) { echo '<h3>Momentan findet statt…</h3>'; foreach ($current_vortraege as $vortrag) { echo $vortrag->tableItem(); } } $next_day = $current_day; $next_slot = $current_slot + 1; while (count(Vortrag::vortraege_in_timeslot($next_day, $next_slot)) == 0) { $next_slot++; if ($next_slot > 6) { $next_day++; $next_slot = 1; } if ($next_day > 3) { break; } } $next_vortraege = Vortrag::vortraege_in_timeslot($next_day, $next_slot); if (count($next_vortraege) > 0) { echo '<h3>Als nächstes um ' . Vortrag::slot_string($next_slot) . '…</h3>'; foreach ($next_vortraege as $vortrag) { echo $vortrag->tableItem(); } if (!isset($current_page) || $current_page->getID() != 'programm') { echo '<a class="pull-right" href="/programm">Zum Programm >></a><div> </div>'; } } ?> </div>