Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/single.php
2020-08-17 15:11:18 +03:00

29 lines
855 B
PHP

<?php
get_header();
$post = get_post();
?>
<div class="content no-pb">
<div class="top-panel empty"></div>
<div class="cont back-white">
<div class="text-page">
<h1><?=get_the_title($post); ?></h1>
<br>
<?=get_the_content(null,false, $post); ?>
</div>
</div>
<div class="main-page">
<div class="mp-small-block">
<div class="cont">
<div class="sb-head">Interested? Get to know more</div>
<div class="buttons">
<a href="/contact-us" class="button xxl mp-top-right">Request a demo</a>
<a href="<?= get_lawcarta_url()?>/user/registration" class="button xxl mp-top-left">Sign Up For Free</a>
</div>
</div>
</div>
</div>
</div>
<?php
get_footer();