diff options
Diffstat (limited to 'pages/channels.ecpp')
-rw-r--r-- | pages/channels.ecpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pages/channels.ecpp b/pages/channels.ecpp new file mode 100644 index 0000000..aa48f03 --- /dev/null +++ b/pages/channels.ecpp @@ -0,0 +1,29 @@ +<%pre> +#include <boost/lexical_cast.hpp> +#include <vdr/plugin.h> +#include <vdr/channels.h> +</%pre> +<html> + <head> + <title><$ tr("channels") $></title> + </head> + <body> + + <div id="inhalt"> +<{ + + for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) { + if (!channel->GroupSep() && *channel->Name()) { +}> + <div class="channel"> + <a href="schedule.html?channel=<$ channel->Number() $>"><$ channel->Name() $></a> + </div> +<{ + } + } + + +}> + </div> + </body> +</html> |