diff options
Diffstat (limited to 'pages/whats_on_now.ecpp')
-rw-r--r-- | pages/whats_on_now.ecpp | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/pages/whats_on_now.ecpp b/pages/whats_on_now.ecpp index 3511105..eb323d9 100644 --- a/pages/whats_on_now.ecpp +++ b/pages/whats_on_now.ecpp @@ -43,17 +43,19 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); std::string short_description(Event->ShortText() ? Event->ShortText() : ""); std::string description(Event->Description() ? Event->Description() : ""); }> - <div class="event"> - <div class="station"><$ Channel->Name() $></div> - <div class="tools"> + <table class="event" cellpadding="0" cellspacing="0"> + <tr><td class="station" colspan="2"><$ Channel->Name() $></td></tr> + <tr> + <td class="tools"> - </div> - <div class="content"> - <span class="title"><$ title $></span><br/> - <span class="short"><$ short_description $></span> - <div class="description"><$ description $></div> - </div> - </div> + </td> + <td class="content"> + <div class="title"><$ title $></div> + <div class="short"><$ short_description $></div> + <div class="description"><$ description $></div> + </td> + </tr> + </table> <{ } } |