14 lines
152 B
PHP
14 lines
152 B
PHP
<?php
|
|
/**
|
|
* The main template file.
|
|
*
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="main">
|
|
<?php get_template_part('content') ?>
|
|
</div>
|
|
|
|
|
|
<?php get_footer(); ?>
|