17 lines
198 B
PHP
17 lines
198 B
PHP
<?php
|
|
get_header();
|
|
?>
|
|
<div class="span8">
|
|
<section class="content">
|
|
<?php
|
|
get_template_part("loop");
|
|
?>
|
|
</section>
|
|
</div>
|
|
<?php
|
|
get_template_part("sidebar");
|
|
?>
|
|
|
|
<?php
|
|
get_footer();
|
|
?>
|