2024-01-09 16:13:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying all pages
|
|
|
|
*
|
|
|
|
* This is the template that displays all pages by default.
|
|
|
|
* Please note that this is the WordPress construct of pages
|
|
|
|
* and that other 'pages' on your WordPress site may use a
|
|
|
|
* different template.
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
|
|
*
|
2024-01-13 15:46:11 +01:00
|
|
|
* @package Xarxaprod_theme
|
2024-01-09 16:13:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<main id="primary" class="site-main">
|
|
|
|
<?php
|
|
|
|
if ( have_posts() ) :
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
|
|
|
|
|
|
|
get_template_part( 'template-parts/content', 'page' );
|
|
|
|
|
|
|
|
endwhile; // End of the loop.
|
|
|
|
endif; // End if have_post.
|
|
|
|
?>
|
|
|
|
|
2024-03-31 16:20:10 +02:00
|
|
|
<?php
|
|
|
|
if ( is_front_page() ) :
|
2024-02-20 21:13:13 +01:00
|
|
|
//get_template_part( 'template-parts/section', 'featured' );
|
2024-02-20 23:13:06 +01:00
|
|
|
get_template_part( 'template-parts/section', 'last-convos' );
|
2024-04-03 03:21:48 +02:00
|
|
|
get_template_part( 'template-parts/section', 'last-agenda' );
|
2024-02-29 12:04:10 +01:00
|
|
|
endif;
|
2024-03-31 16:20:10 +02:00
|
|
|
?>
|
2024-02-29 12:04:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
</main><!-- #main -->
|
|
|
|
<?php
|
|
|
|
if ( is_front_page() ) :
|
2024-02-20 21:13:13 +01:00
|
|
|
echo '<aside id="extra" class="extra-content contingut-extra">';
|
2024-02-22 18:42:34 +01:00
|
|
|
dynamic_sidebar( 'front-page-widgets' ); // including widget front page
|
2024-02-29 12:04:10 +01:00
|
|
|
echo '</aside>';
|
2024-02-20 21:13:13 +01:00
|
|
|
endif;
|
2024-01-09 16:13:20 +01:00
|
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|