initfest/page-schedule.php

54 lines
997 B
PHP
Raw Normal View History

<?php
/* Template Name: Schedule */
get_header();
$content = require __DIR__ . DIRECTORY_SEPARATOR . 'schedule' . DIRECTORY_SEPARATOR . 'parse.php';
//var_dump($data);
?>
2015-10-19 12:04:20 +03:00
<section class="content grid">
<div class="col-left">
<h1>Програма</h1>
2015-10-19 12:04:20 +03:00
2015-10-19 11:50:48 +03:00
<table cellpadding="0" cellspacing="0" style="text-align: center;" class="schedule">
<thead>
<tr>
<td>&nbsp;</td>
<?php
foreach ($content['halls'] as $hall_name) {
?>
<td><?php echo htmlspecialchars($hall_name); ?></td>
<?php
}
?>
</tr>
</thead>
<tbody>
<?php
foreach ($content['lines'] as $line) {
echo $line, PHP_EOL;
}
?>
</tbody>
</table>
<div class="separator"></div>
<?php
foreach ($content['fulltalks'] as $line) {
echo $line, PHP_EOL;
}
2015-10-19 12:04:20 +03:00
/*
foreach ($content['gspk'] as $line) {
echo $line, PHP_EOL;
}
foreach ($content['fspk'] as $line) {
echo $line, PHP_EOL;
2015-10-19 12:04:20 +03:00
}*/
?>
</div>
2015-10-19 12:04:20 +03:00
<?php get_sidebar(); ?>
</section>
<?php echo do_shortcode( '[transport]' ); ?>
<?php get_footer(); ?>