| 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/home/ |
Upload File : |
<?php
$vertical_title = get_field('home_project_vertical_title');
$title = get_field('home_project_title');
$text = get_field('home_project_text');
$link_text = get_field('home_project_link_text');
$link = get_field('home_project_link');
?>
<div class="home-project site-content" data-animation>
<div class="site__container">
<div class="home-project__inner">
<div class="grid">
<div class="grid__item push--tab--one-twelfth tab--five-twelfths">
<?php if ($vertical_title) : ?>
<div class="vertical-title"><?php MOZ_Utils::upper($vertical_title); ?></div>
<?php endif; ?>
<?php if ($title) : ?>
<h1 class="home-project__title fs-50"><?php echo $title; ?></h1>
<?php endif; ?>
</div>
<div class="grid__item push--tab--two-twelfths tab--four-twelfths">
<?php if ($text) : ?>
<div class="home-project__text"><?php echo $text; ?></div>
<?php endif; ?>
<?php if ($link_text && $link) : ?>
<div class="home-project__link">
<?php Component_Button::render( array(
'type' => 'arrow',
'btn_text' => MOZ_Utils::get_upper($link_text),
'btn_link' => $link,
'extra_class' => 'btn__arrow'
)); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>