Files
agroexpert/content-post-rfo.php

42 lines
1.9 KiB
PHP
Raw Normal View History

2025-06-16 20:16:54 +03:00
<?php
$formatted_date = format_event_date();
2025-06-22 14:09:09 +03:00
2025-06-19 16:12:53 +03:00
//$class = $full_width ? 'article-item-main__rfo' : 'article-item-rfo';
$class = isset($args['class']) ? $args['class'] : 'article-item-rfo';
2025-06-22 14:09:09 +03:00
$title = isset($args['title']) ? $args['title'] : '';
$has_video = isset($args['has_video']) ? $args['has_video'] : false;
2025-06-19 16:12:53 +03:00
2025-06-16 20:16:54 +03:00
?>
<div class="article-item-wrapper__rfo">
2025-06-22 14:09:09 +03:00
<?if ( $title !== ''):?>
<div class="land-cart-title">
2025-06-22 20:49:00 +03:00
<div class="land-cart-title__text">
<?if ( isset($args['title_link']) ):?>
<a href="<?=$args['title_link']?>"><?php echo esc_html($title); ?></a>
<?else:?>
<?php echo esc_html($title); ?>
<?endif?>
</div>
2025-06-22 14:09:09 +03:00
<div class="land-cart-title__arrow"></div>
</div>
<?endif?>
<div class="<?=$class; ?><?=$has_video === true ? ' has-video' : ''; ?>">
2025-06-22 20:49:00 +03:00
<a href="<?php the_permalink(); ?>" class="article-item__image-container">
2025-06-16 20:16:54 +03:00
<?=render_webp_picture_by_post( null, 'news-list-picture'); ?>
</a>
2025-06-22 20:49:00 +03:00
<div class="article-item__text">
<div class="article-time">
<img src="<?= get_asset('/icons/time.svg'); ?>" alt="" /><?php echo $formatted_date; ?>
2025-06-16 20:16:54 +03:00
</div>
2025-06-22 20:49:00 +03:00
<a href="<?php the_permalink(); ?>" class="subtitle-16 article-item__link"><?php the_title(); ?></a>
</div>
<div class="article-rfo-details">
<div class="article-rfo-details-text"><a href="<?php the_permalink();?>">Подробнее</a></div><div class="article-rfo-details-icon">
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2025-06-22 14:09:09 +03:00
<path d="M8.57157 16.4283H16.4287M16.4287 16.4283V8.5712M16.4287 16.4283L8.57157 8.5712" stroke="#006842" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
2025-06-22 20:49:00 +03:00
</svg>
2025-06-22 14:09:09 +03:00
</div>
2025-06-22 20:49:00 +03:00
</div>
2025-06-16 20:16:54 +03:00
</div>
</div>