| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/themes/erc04961/ |
Upload File : |
<?php get_header(); ?>
<?php get_template_part('elements/breadcrumb'); ?>
<?php
if ( have_posts() ) :
global $wp_query;
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;
$i = 0; ?>
<div class="section-news" data-animation>
<div class="site__container">
<div class="section-news__inner">
<div class="vertical-title"><?php MOZ_Utils::upper(__('01. News and events', 'erc001')); ?></div>
<div class="grid">
<?php while ( have_posts() ) : the_post(); ?>
<div class="grid__item push--tab--one-twelfth tab--five-twelfths">
<div class="section-news__item <?php if($i%2 == 1) : echo 'section-news__item--even'; endif; ?>">
<div class="section-news__item__box">
<div class="section-news__item__box__date"><?php echo get_the_date('d.m.Y'); ?></div>
<div class="section-news__item__box__title"><a href="<?php echo get_the_permalink(); ?>"><?php echo get_the_title(); ?></a></div>
<a class="section-news__item__box__button" href="<?php echo get_the_permalink(); ?>"><?php MOZ_SVG::svg('arrow'); ?></a>
</div>
<div class="section-news__item__bg">
<?php MOZ_Image::background( get_post_thumbnail_id(), 'Medium', array(
'large' => '(min-width: 768px)'
), array( 'class' => '' ), array( 'lazy' => false ) ); ?>
</div>
</div>
</div>
<?php $i++; ?>
<?php endwhile;
$big = 999999999; // need an unlikely integer
$my_args = array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'prev_next' => true,
'prev_text' => __( 'Previous' ),
'next_text' => __( 'Next' ),
'dots_text' => __( '…' )
);
MOZ_Pagination::pagination($my_args);
?>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php get_footer();