2021-04-27 22:21:26 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Front
|
|
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
|
2021-04-29 11:47:25 +02:00
|
|
|
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement' ); ?>
|
2021-04-27 22:21:26 +02:00
|
|
|
|
2021-04-29 11:47:25 +02:00
|
|
|
<article>
|
|
|
|
<main>
|
|
|
|
<?php get_template_part( 'template-parts/section', 'news' ); ?>
|
|
|
|
</main>
|
2022-03-17 14:14:25 +01:00
|
|
|
</article>
|
|
|
|
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement-middle' ); ?>
|
|
|
|
|
|
|
|
<?php get_template_part( 'template-parts/home', 'announcement-bottom' ); ?>
|
|
|
|
|
2021-04-27 22:21:26 +02:00
|
|
|
<?php get_footer();
|