first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
<?php
/**
* The template for displaying Archive pages
*
* Used to display archive-type pages if nothing more specific matches a query.
* For example, puts together date-based pages if no date.php file exists.
*
* If you'd like to further customize these archive views, you may create a
* new template file for each specific one.
*
* @link http://codex.wordpress.org/Template_Hierarchy
*/
get_header();
$column_classes = solarify_get_columns_classes(); ?>
<!-- tc: archive -->
<div id="content" class="<?php echo esc_attr( $column_classes['main_column_class'] ); ?>">
<?php if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
$name_specialised_template = get_post_format();
if ( 'fw-event' === $post->post_type ) {
$name_specialised_template = 'event';
} else if ( 'fw-services' === $post->post_type ) {
$name_specialised_template = 'service';
}
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'template-parts/content', $name_specialised_template );
endwhile;
// Previous/next page navigation.
solarify_paging_nav();
else :
// If no content, include the "No posts found" template.
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div><!--eof #content -->
<!-- /tc: archive -->
<?php if ( $column_classes['sidebar_class'] ): ?>
<!-- main aside sidebar -->
<aside class="<?php echo esc_attr( $column_classes['sidebar_class'] ); ?>">
<?php get_sidebar(); ?>
</aside>
<!-- eof main aside sidebar -->
<?php
endif;
get_footer();