diff options
author | MaZderMind | 2015-04-04 12:31:20 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-04 12:31:20 +0200 |
commit | b8f51fa77f3ebb19ee7d54ef10e655176ae249c2 (patch) | |
tree | ca5341e636803ecb6ce9575a255d03a1f06ce22a /template | |
parent | cee3889ef56129a23e4971afaaf49a35fe30413d (diff) | |
parent | 084098645828740a5f96a011eb3bd1d69c5a9e6e (diff) |
Merge branch 'multiview'
Diffstat (limited to 'template')
-rw-r--r-- | template/multiview.phtml | 23 |
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> |