slowtwitch-wp-theme/front-page.php

22 lines
829 B
PHP
Raw Normal View History

2024-05-29 01:20:50 +00:00
<?php get_header() ?>
<!-- Primary Page Layout
-->
<div class="container">
<div class="row">
<div class="twelve column" style="margin-top: 5%">
<h4>Basic Page</h4>
<p>This index.html page is a placeholder with the CSS, font and favicon. It's just waiting for you to add some content! If you need some help hit up the <a href="http://www.getskeleton.com">Skeleton documentation</a>.</p>
</div>
</div>
</div>
<?php
if( have_posts() ) {
while( have_posts() ) {
the_post();
the_content();
}
}
?>
<?php get_footer() ?>