diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 18:22:47 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 18:22:47 +0000 |
commit | f290227150bb13c72c87012e20a9ff7959f31a5f (patch) | |
tree | b327aa93f52d5b373702eebb5e2d7e1882f7923a /pages/channels.ecpp | |
parent | e086df75301b2d17a3f6caacfa735d4c705b878b (diff) | |
download | vdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.gz vdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.bz2 |
Moved *.ecpp to pages and *.css to css subdir, added images dir
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> |