add files

This commit is contained in:
Andrey Kuvshinov
2025-07-09 21:21:17 +03:00
commit 8fc8cbae32
596 changed files with 207566 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<!--[archive/header/category]-->
<?php if( !is_in_dk() ) : ?>
<div class="mb-4 position-relative">
<?php get_template_part("template-parts/ad/revive/ad", "", [ "zone" => 12 ]) ?>
</div>
<?php endif; ?>
<?php if( wp_is_mobile() ) : ?>
<?php
$term_id = get_current_page_main_taxonomy_term_id( );
$color = get_term_meta( $term_id, "color", true );
$color = $color ? $color : "grey";
?>
<div class="col-12 col-md-6 col-xl-4 float-left">
<div class="section__title section__title--<?= $color ?> d-block d-md-none mb-3">
<?= get_term( get_queried_object_id() )->name ?>
</div>
</div>
<?php else : ?>
<div class="col-12 col-md-6 col-xl-4 float-left">
<?= str_replace("<p></p>", "", term_description( get_queried_object()->term_id )); ?>
</div>
<?php endif; ?>
<!--[/archive/header/category]-->