Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/page.php
2023-10-23 15:07:44 +02:00

35 lines
1.0 KiB
PHP

<?php
get_header();
if (have_posts()):
while (have_posts()):
the_post();
?>
<div class="content">
<?php the_content(); ?>
<div class="mp-feature with-bg bot-form">
<div class="cont">
<div class="inner-cont">
<div class="flex">
<div class="col">
<div class="mp-interested centered">
<h4 class="text-header">Interested? Get to know more</h4>
<div class="buttons">
<a href="https://calendly.com/livecarta/livecarta-demo" class="button action big">Book a demo</a>
<a href="<?= get_lawcarta_url()?>/user/registration" class="button secondary big">Sign up for free</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
endwhile;
endif;
get_footer();