22 lines
416 B
PHP
22 lines
416 B
PHP
<?php
|
|
/*
|
|
Template Name: Front
|
|
*/
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement' ); ?>
|
|
|
|
<article>
|
|
<main>
|
|
<?php get_template_part( 'template-parts/section', 'news' ); ?>
|
|
</main>
|
|
</article>
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement-middle' ); ?>
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement-bottom' ); ?>
|
|
|
|
<?php get_footer();
|