| 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/elements/ |
Upload File : |
<?php
$address = get_field('contact_address', 'options');
$tel = get_field('contact_telephone', 'options');
$tel_url = get_field('contact_telephone_url', 'options');
$email = get_field('contact_email', 'options');
?>
<footer class="site-footer">
<div class="site__container">
<div class="grid">
<div class="grid__item tab--one-half lap--one-third">
<div class="site-footer__contact">
<div class="vertical-title"><?php MOZ_Utils::upper(__('Contact us', 'erc001')); ?></div>
<div class="site-footer__contact__inner">
<span class="site-footer__title">ReCO<span class="fs-recost">2</span>ST</span>
<?php if ($address) : ?>
<span><?php echo $address; ?></span>
<?php endif; ?>
<?php if ($tel && $tel_url) : ?>
<span><a href="tel:<?php echo $tel_url; ?>"><?php echo $tel; ?></a></span>
<?php endif; ?>
<?php if ($email) : ?>
<span class="site-footer__contact__email"><a href="mailto:<?php echo $email; ?>"><?php echo $email; ?></a></span>
<?php endif; ?>
</div>
</div>
</div>
<div class="grid__item tab--one-half lap--one-third">
<div class="site-footer__newsletter">
<div class="vertical-title"><?php MOZ_Utils::upper(__('Newsletter', 'erc001')); ?></div>
<div class="site-footer__newsletter__inner">
<span class="site-footer__title"><?php MOZ_Utils::upper(__('Newsletter subscription', 'erc001')); ?></span>
<?php echo do_shortcode('[moz-mailchimp]'); ?>
<?php /*
$api_key = get_field( 'mc_key', 'options' );
$list_id = get_field( 'mc_list', 'options' );
if ( $api_key && $list_id ) : ?>
<form method="get" id="mc-embedded-subscribe-form">
<label class="visuallyhidden"
for="mce-EMAIL"><?php _e( 'Your email', 'erc001' ); ?></label>
<input type="email" value="" name="EMAIL" id="mce-EMAIL"
placeholder="<?php _e( 'Enter your email', 'erc001' ); ?>" required>
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input type="text" name="b_de01a510069a4b43c7d6ae417_8288b6b13a" tabindex="-1"
value="">
</div>
<button class="btn btn--border" type="submit" name="subscribe" id="mc-embedded-subscribe">
<?php MOZ_Utils::upper( __('Subscribe', 'erc001') ); ?>
</button>
<img class="mc-loader"
src="<?php echo get_stylesheet_directory_uri() . '/assets/img/ajax-loader2.gif'; ?>"
alt="loader"/>
<div id="mc-response"></div>
</form>
<?php endif; */ ?>
<?php if ( have_rows( 'social', 'options') ) : ?>
<div class="site-footer__socials">
<?php while ( have_rows('social', 'options') ) : the_row();
$icon = get_sub_field( 'network' );
$url = get_sub_field( 'url' );
?>
<div class="site-footer__social">
<a href="<?php echo $url; ?>" target="_blank" rel="noopener">
<?php
switch ( $icon ) {
case 'facebook' :
MOZ_SVG::svg( 'icon-facebook' );
break;
case 'twitter' :
MOZ_SVG::svg( 'icon-twitter' );
break;
case 'youtube' :
MOZ_SVG::svg( 'icon-youtube' );
break;
case 'pinterest' :
MOZ_SVG::svg( 'icon-pinterest' );
break;
case 'instagram' :
MOZ_SVG::svg( 'icon-instagram' );
break;
case 'foursquare' :
MOZ_SVG::svg( 'icon-foursquare' );
break;
case 'linkedin' :
MOZ_SVG::svg( 'icon-linkedin' );
break;
default :
break;
}
?></a>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div class="grid__item lap--one-third">
<div class="site-footer__funding">
<img src="<?php echo get_template_directory_uri(); ?>/assets/img/eu-flag.png" alt="This project has received funding from the European Union's Horizon 2020 Research and Innovation program"/>
<?php
$funding_content = get_field( 'funding_content', 'options' );
if ($funding_content) : ?>
<div><?php echo $funding_content; ?></div>
<?php endif; ?>
</div>
<?php $copyrights = get_field( 'copyrights', 'options' );
if ($copyrights) : ?>
<div class="site-footer__copyrights">
<?php echo $copyrights; ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</footer>