initfest/page-speakers.php

31 lines
550 B
PHP

<?php
/* Template Name: Speakers */
get_header();
wp_nav_menu( array( 'theme_location' => 'footer-schedule', 'container_class' => 'content subnav cf' ) );
require("schedule-config.php");
?>
<section class="content grid">
<div class="col-left">
<h1><?php pll_e('Лектори') ?></h1>
<?php
if (!empty($content)) {
echo $content['gspk'];
?>
<div class="separator"></div>
<?php
echo $content['fspk'];
} else {
pll_e('TBA');
}
?>
</div>
<?php get_sidebar(); ?>
</section>
<?php echo do_shortcode( '[transport]' ); ?>
<?php get_footer(); ?>