aboutsummaryrefslogtreecommitdiff
path: root/template/room.phtml
blob: 1060652f30ceb1533dcaf1968fdf3254168d9cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="container-fluid rooms">
	<h1><?=h($title)?></h1>

	<ul class="nav nav-tabs nav-justified">
		<? foreach(array('video', 'audio', 'slides') as $iter): ?>
			<li
				<? if($type == $iter):?>class="active"<? endif ?>
			>
				<a href="<?=h(link_player($room, $iter))?>">
					<?=h(ucfirst($iter))?>
				</a>
			</li>
		<? endforeach ?>
	</ul>


	<div class="tab-content">
		<? include("assemblies/player/$type.phtml") ?>
		<div class="switcher">
			<? include("assemblies/switcher/$type.phtml") ?>
		</div>
	</div>
</div>