aboutsummaryrefslogtreecommitdiff
path: root/template/multiview.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'template/multiview.phtml')
-rw-r--r--template/multiview.phtml23
1 files changed, 23 insertions, 0 deletions
diff --git a/template/multiview.phtml b/template/multiview.phtml
new file mode 100644
index 0000000..e07446b
--- /dev/null
+++ b/template/multiview.phtml
@@ -0,0 +1,23 @@
+<div class="container-fluid">
+ <div class="row headline">
+ <div class="col-xs-12">
+ <h1><?=h($title)?></h1>
+ </div>
+ </div>
+
+ <div class="row room-group">
+ <? foreach($rooms as $room): ?>
+ <? foreach($room->getStreams() as $stream): ?>
+ <div class="col-xs-6 col-sm-4 col-md-3 col-lg-2">
+ <div class="cell">
+ <h2><?=h($stream->getDisplay())?></h2>
+ <? require("$assemblies/player/".$stream->getPlayerType().".phtml") ?>
+ <div class="meter"></div>
+ <div class="timer"></div>
+ </div>
+ </div>
+ <? endforeach ?>
+ <? endforeach ?>
+ </div>
+
+</div>