HEX
Server: LiteSpeed
System: Linux php-prod-3.spaceapp.ru 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: sarli3128 (1010)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/sarlight.ru/public_html/wp-content/themes/addison/views/portfolio/single/standard.php
<?php

	$share_html = boldthemes_get_share_html( get_permalink(), 'pf', 'xsmall' );
			
	echo '<article class="btPostSingleItemStandard btPortfolioSingle gutter ' . esc_attr( implode( ' ', get_post_class(BoldThemesFrameworkTemplate::$class_array ) ) ) . '">';
		echo '<div class="port">';
			echo '<div class="btPostContentHolder">';
						
				if( boldthemes_get_option( 'hide_headline' ) ) {
					echo '<div class="btArticleHeadline">' . boldthemes_get_heading_html(
							array(
								'superheadline' =>BoldThemesFrameworkTemplate::$categories_html,
								'headline' => get_the_title(),
								'subheadline' => '',
								'size' => 'large',
								'html_tag' => 'h1',
								'dash' => BoldThemesFrameworkTemplate::$dash
							)									 
						) . '</div><!-- /btArticleHeadline -->';
				}

				if ( BoldThemesFrameworkTemplate::$media_html != '' ) {
					echo '<div class="btArticleMedia">' . BoldThemesFrameworkTemplate::$media_html . '</div><!-- /btArticleMedia -->';
				}

				echo '<div class="btArticleContent">';
					echo '<div class="btArticleContentInner">' .BoldThemesFrameworkTemplate::$content_html. '</div>';
					if ( ( BoldThemesFrameworkTemplate::$cf != '' && count( BoldThemesFrameworkTemplate::$cf ) > 0 ) || $share_html != '' ) {
						echo '<div class="btArticleSuperMeta">';
							echo '<dl>';
							for ( $i = 0; $i < count( BoldThemesFrameworkTemplate::$cf ); $i++ ) {
								$item = BoldThemesFrameworkTemplate::$cf[ $i ];
								$item_key = substr( $item, 0, strpos( $item, ':' ) );
								$item_value = substr( $item, strpos( $item, ':' ) + 1 );
								echo '<dt>' . wp_kses_post( $item_key ) . ':</dt>';
								echo '<dd>' . wp_kses_post( $item_value ) . '</dd>';
							}
							echo '</dl>';
							if ( $share_html != '' ) echo '<div class="btShareRow">' . wp_kses_post( $share_html ) . '</div><!-- /btShareColumn -->';
						echo '</div><!-- /btArticleSuperMeta -->';
						
					}
				echo '</div>';
				global $multipage;
				if ( $multipage ) { 
						echo '<div class="btLinkPages">';
							wp_link_pages( array( 
								'before'      => '<ul>' . esc_html__( 'Pages:', 'addison' ),
								'separator'   => '<li>',
								'after'       => '</ul>'
							));
						echo '</div><!-- /btLinkPages -->';
				}
				

			echo '</div><!-- /btArticleContentHolder -->' ;
	
		echo '</div><!-- port -->';		
	echo '</article>';

?>