mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 09:13:38 +01:00
17 lines
269 B
PHP
17 lines
269 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sarahetter
|
|
* Date: 15-09-18
|
|
* Time: 4:33 PM
|
|
*/
|
|
get_header();
|
|
$controller = new Controller();
|
|
|
|
?>
|
|
|
|
<?php get_template_part( 'template', 'header' ); ?>
|
|
|
|
<?php get_template_part( 'content', 'main' ); ?>
|
|
|
|
<?php get_footer(); ?>
|