shkola/wp-content/themes/dekart/template-parts/pksh/results.php
2026-07-18 16:05:15 +00:00

53 lines
2.2 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
/**
* Результаты учеников + answer-блок для AI-цитирования
* .bento .pksh-section #results .bento-card--highlight-results
*
* @package Dekart
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$data = Pksh_Data::instance();
$city_gen = $data->get_city_genitive();
$answer = $data->get_geo_answer_results();
$q2 = $data->get_geo_question_2();
?>
<section class="bento pksh-section" id="results" aria-label="Результаты учеников">
<div class="bento__full bento-card bento-card--highlight-results section-header--centered">
<span class="bento-label bento-label--light">Результаты наших учеников</span>
<h2 class="bento-h2 bento-h2--light">К чему мы приводим детей</h2>
<p class="bento-p">95% наших выпускников поступают в школы и лицеи <?php echo esc_html( $city_gen ); ?> без стресса. Первые результаты — через 3 недели.</p>
<div class="results-grid">
<div class="result-item">
<span class="result-item__value">95%</span>
<span class="result-item__desc">поступают в школы и лицеи <?php echo esc_html( $city_gen ); ?> без стресса</span>
</div>
<div class="result-item">
<span class="result-item__value">3 нед.</span>
<span class="result-item__desc">— первый осмысленный слог у нечитавших детей</span>
</div>
<div class="result-item">
<span class="result-item__value">87%</span>
<span class="result-item__desc">родителей отмечают рост самостоятельности</span>
</div>
<div class="result-item">
<span class="result-item__value">2,5×</span>
<span class="result-item__desc">быстрее адаптируются в первом классе</span>
</div>
</div>
<?php if ( '' !== $q2 ) : ?>
<h3 class="bento-h3 geo-answer-heading"><?php echo esc_html( $q2 ); ?></h3>
<?php endif; ?>
<?php if ( '' !== $answer ) : ?>
<div class="geo-answer-block">
<p class="bento-p geo-answer-text"><?php echo wp_kses_post( $answer ); ?></p>
</div>
<?php endif; ?>
</div>
</section>