<?php
// Template name: Text page
get_header();
$curr_lang = pll_current_language();
$template_directory = get_template_directory_uri();
$srcset = "srcset='" . $template_directory . "/assets/images/lazyload.png'";
?>
<main>
<section class="text-page">
<div class="container">
<div class="text-page-wrapper" data-animate-group="list">
<h1 class="title title-1 mob-title-1" data-animate="word" data-index="1">
<?php the_title(); ?>
</h1>
<?php
$subtitle = get_field('subtitle');
if ($subtitle) :
?>
<p class="text text-1 mob-text-2" data-animate="swim-top" data-index="2">
<?php echo $subtitle; ?>
</p>
<?php
endif;
$update_date_label = get_field('update_date_label');
if ($update_date_label) :
?>
<p class="date text-2 mob-text-2" data-animate="swim-top" data-index="2">
<?php echo $update_date_label; ?>
<?php echo get_the_modified_date('d/m/Y, H:i'); ?>
</p>
<?php
endif;
?>
<div class="editor" data-animate="swim-top" data-index="1">
<?php
the_field('content');
?>
</div>
</div>
</div>
</section>
</main>
<?php
get_template_part('templates/breadcrumbs');
?>
<?php
get_footer();
?>