Delete streaming template
This commit is contained in:
parent
f78d86d5de
commit
b5fbe19c7d
|
@ -1,41 +0,0 @@
|
|||
<?php
|
||||
/* Template Name: Streaming */
|
||||
get_header();
|
||||
//wp_nav_menu( array( 'theme_location' => 'stream-menu', 'container_class' => 'content subnav cf' ) );
|
||||
?>
|
||||
<br>
|
||||
<section class="content grid">
|
||||
<div class="col-left">
|
||||
<!-- <h1><?php pll_e('Streaming') ?></h1> -->
|
||||
|
||||
<?php
|
||||
|
||||
if (!empty($_GET['track'])) {
|
||||
$track = $_GET['track'];
|
||||
} else {
|
||||
$track = "hall-a";
|
||||
}
|
||||
?>
|
||||
<div class="videoWrapper">
|
||||
<iframe src="/stream/index.php?track=<?php echo htmlspecialchars($track); ?>" allowfullscreen>
|
||||
<p>Your browser does not support iframes</p>
|
||||
</iframe>
|
||||
</div>
|
||||
<br>
|
||||
<?php
|
||||
if ( have_posts() ) :
|
||||
while ( have_posts() ) : the_post();
|
||||
the_content();
|
||||
endwhile;
|
||||
endif;
|
||||
?>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
get_sidebar();
|
||||
?>
|
||||
</section>
|
||||
|
||||
<?php echo do_shortcode( '[transport]' ); ?>
|
||||
|
||||
<?php get_footer(); ?>
|
Loading…
Reference in New Issue