34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
|
|
<?php
|
||
|
|
$partners = get_post_query('post', 10, 'ASC', '', 'partners');
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?php get_header(); ?>
|
||
|
|
<div class="content-middle articles-wrapper">
|
||
|
|
<?php get_template_part('partials/rubrics-mobile'); ?>
|
||
|
|
<div class="section-title">
|
||
|
|
<h1 class="section-title__title"><?= get_queried_object()->name ?></h1>
|
||
|
|
</div>
|
||
|
|
<div class="articles-preview">
|
||
|
|
<?
|
||
|
|
if ($partners->have_posts()) :
|
||
|
|
while ($partners->have_posts()) :
|
||
|
|
$partners->the_post();
|
||
|
|
?>
|
||
|
|
<a href="<?= get_permalink(); ?>" class="partner-item">
|
||
|
|
<div class="partner-item__image-container">
|
||
|
|
<?= show_post_image(); ?>
|
||
|
|
</div>
|
||
|
|
<div class="partner-item__text-container">
|
||
|
|
<p class="subtitle-16"><?= get_the_title(); ?></p>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
<?php
|
||
|
|
endwhile;
|
||
|
|
endif;
|
||
|
|
?>
|
||
|
|
</div>
|
||
|
|
<? custom_pagination($partners); ?>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<?php
|
||
|
|
get_footer(); ?>
|