File: h:/root/home/kytoffice-001/www/expresstinou/wp-content/themes/happenstance/content-archives.php
<?php
/**
* The template for displaying content of search/archive entries as One Column.
* @package HappenStance
* @since HappenStance 1.0.0
*/ ?>
<article <?php post_class('post-entry'); ?>>
<?php if ( !has_post_format('aside') ) { ?>
<h2 class="post-entry-headline title single-title entry-title"><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php } ?>
<?php if ( get_theme_mod('happenstance_display_meta_post_entry') != 'Hide' ) { ?>
<p class="post-meta">
<span class="post-info-author vcard author"><i class="icon_pencil-edit" aria-hidden="true"></i><span class="fn"><?php the_author_posts_link(); ?></span></span>
<span class="post-info-date post_date date updated"><i class="icon_calendar" aria-hidden="true"></i><a href="<?php echo get_permalink(); ?>"><?php echo get_the_date(); ?></a></span>
<?php if ( comments_open() ) : ?>
<span class="post-info-comments"><i class="icon_comment_alt" aria-hidden="true"></i><a href="<?php comments_link(); ?>"><?php printf( _n( '1 Comment', '%1$s Comments', get_comments_number(), 'happenstance' ), number_format_i18n( get_comments_number() ), get_the_title() ); ?></a></span>
<?php endif; ?>
</p>
<?php } ?>
<div class="post-entry-content-wrapper">
<?php if ( has_post_thumbnail() ) { ?>
<?php if ( get_theme_mod('happenstance_featured_image_size') != 'Thumbnail Size' ) { ?>
<a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php } else { ?>
<a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
<?php }} ?>
<div class="post-entry-content">
<?php if ( get_theme_mod('happenstance_content_archives') != 'Content' ) { ?>
<?php the_excerpt(); ?>
<?php } else { ?>
<?php global $more; $more = 0; ?><?php the_content(); ?>
<?php } ?>
</div>
</div>
<?php if ( get_theme_mod('happenstance_display_meta_post_entry') != 'Hide' && has_category() ) { ?>
<div class="post-info">
<p class="post-category"><span class="post-info-category"><i class="icon_folder-alt" aria-hidden="true"></i><?php the_category(', '); ?></span></p>
<?php if ( has_tag() ) { ?>
<p class="post-tags"><?php the_tags( '<span class="post-info-tags"><i class="icon_tag_alt" aria-hidden="true"></i>', ', ', '</span>' ); ?></p>
<?php } ?>
</div>
<?php } ?>
</article>