2024-03-01 17:47:03 +03:00
|
|
|
|
<?php
|
|
|
|
|
|
/*
|
|
|
|
|
|
Template Name: Шаблон страницы о проекте
|
|
|
|
|
|
*/
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php get_header(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="content-middle articles-wrapper">
|
|
|
|
|
|
<?php get_template_part('partials/rubrics-mobile'); ?>
|
|
|
|
|
|
<div class="section-title about-section-title">
|
|
|
|
|
|
<h1 class="section-title__title"><?= the_title() ?></h1>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="about">
|
|
|
|
|
|
<?= get_template_part('content-about')?>
|
|
|
|
|
|
</div>
|
2026-03-05 22:37:13 +03:00
|
|
|
|
|
|
|
|
|
|
<?php get_template_part('partials/related-posts', '', array('posts_per_page' => 8) ); ?>
|
|
|
|
|
|
|
2024-03-01 17:47:03 +03:00
|
|
|
|
<a href="<?= home_url()?>" class="articles-preview__show-next subsctiption-back">На главную</a>
|
|
|
|
|
|
<div class="grid">
|
|
|
|
|
|
<div class="grid__item"></div>
|
|
|
|
|
|
<div class="grid__item"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
get_footer(); ?>
|