<?php
// Template name: Text page
get_header();
$template_directory = get_template_directory_uri();
$srcset = 'srcset="' . $template_directory . '/assets/images/lazyload.png"';
?>
<div class="breadcrumbs text-5 mob-text-5" data-animate="fade">
<a href="<?php echo get_home_url(); ?>" class="home"></a>
<span class="separator"></span>
<p class="page"><?php the_title(); ?></p>
</div>
<main>
<section class="text-page">
<div class="container">
<h1 class="section-title title-1 mob-title-1 --text-centered" data-animate="word">
<?php the_title(); ?>
</h1>
<p class="subtitle text-3 mob-text-3 --text-centered" data-animate="swim-top">
Last Update: September 1, 2023 at 1:54 PM
</p>
<div class="editor -numbered-title text-page__container">
<?php the_content(); ?>
</div>
</div>
</section>
</main>
<?php
get_footer();
?>