File: //home/sarlight.ru/public_html/wp-content/themes/addison/views/portfolio/list/standard.php
<?php
	$share_html = boldthemes_get_share_html( get_permalink(), 'pf', 'xsmall' );
	$dash = BoldThemesFrameworkTemplate::$pf_use_dash ? 'top' : '';
	
	echo '<article class="btPostSingleItemStandard btPostListStandard gutter ' . esc_attr( implode( ' ', get_post_class( BoldThemesFrameworkTemplate::$class_array ) ) ) . '">';
		echo '<div class="port">';
			echo '<div class="btArticleContentHolder">';
		
								
				if ( BoldThemesFrameworkTemplate::$media_html != '' ) {
					echo '<div class="btArticleMedia">';
					echo ' ' . BoldThemesFrameworkTemplate::$media_html;
					echo '</div><!-- /btArticleMedia -->';
				}
				
				echo '<div class="btArticleHeadline">';
				echo boldthemes_get_heading_html(
					array(
						'superheadline' =>BoldThemesFrameworkTemplate::$categories_html,
						'headline' => get_the_title(),
						'subheadline' => '',
						'url' => get_permalink(),
						'size' => 'normal',
						'html_tag' => 'h2',
						'dash' => $dash,
						'el_style' => '',
						'el_class' => ''
					)									 
				);
				echo '</div><!-- /btArticleHeadline -->';
				echo '<div class="btArticleContent">' . BoldThemesFrameworkTemplate::$content_final_html . '</div>';
					
				echo '<div class="btArticleShareEtc">';
				
					if ( $share_html != '' ) echo '<div class="btShareColumn">' . wp_kses_post( $share_html ) . '</div><!-- /btTags -->';
					echo '<div class="btReadMoreColumn">';
						$continue_icon = ! is_rtl() ? 'fa_f061' : 'fa_f060';
						$continue_icon_position = ! is_rtl() ?  'right' : 'left';
						echo boldthemes_get_button_html( array ( 'icon' => $continue_icon, 'url' => get_permalink(), 'text' => esc_html__( 'CONTINUE READING', 'addison' ), 'style' => 'outline', 'size' => 'small', 'icon_position' => $continue_icon_position ) );
					echo '</div><!-- /btTags -->';
					
				echo '</div><!-- /btArticleShareEtc -->';
				
			echo '</div><!-- /btContent -->' ;
		echo '</div><!-- /port -->';	
	echo '</article>';
?>