2026-07-27 17:00:30 +00:00

35 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Видео-тур по школе — главная страница
*
* @package Dekart
* @since 1.0.0
*/
if (! defined('ABSPATH')) {
exit;
}
$video_url = carbon_get_post_meta((int) get_the_ID(), 'front_video_url');
if (! $video_url) {
return;
}
?>
<section class="video-tour section-bg reveal" data-bg="video-tour">
<div class="container">
<div class="section-header--centered">
<span class="bento-label">Видео</span>
<h2 class="bento-h2">Посмотрите школу изнутри</h2>
<p class="bento-p">Всего 90 секунд — чтобы убедиться: здесь действительно комфортно и интересно</p>
</div>
<div class="video-tour__wrap">
<div class="video-tour__embed">
<iframe src="<?php echo esc_url($video_url); ?>" loading="lazy" allowfullscreen title="Видео-экскурсия по школе Декарт"></iframe>
</div>
</div>
</div>
</section>