File: /home/sinanpasha/ru.sinanpasha.org/wp-content/themes/capital/content.php
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( option::is_on( 'index_thumb' ) ) {
get_the_image( array( 'size' => 'loop', 'attachment' => false, 'image_scan' => false, 'width' => option::get('thumb_width'), 'height' => option::get('thumb_height'), 'before' => '<div class="post-thumb">', 'after' => '</div>' ) );
} ?>
<aside class="entry-date">
<?php if ( option::is_on( 'display_date' ) ) { ?>
<span class="day"><?php the_time('d'); ?></span>
<span class="month"><?php the_time('M'); ?></span>
<span class="year"><?php the_time('Y'); ?></span>
<?php } ?>
</aside>
<section class="entry-body">
<header class="entry-header">
<?php the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
<div class="entry-meta">
<?php if ( option::is_on( 'display_author' ) ) { print( '<span class="entry-author">' .__('by', 'wpzoom') . ' ' ); the_author_posts_link(); print('</span>'); } ?>
<?php if ( option::is_on( 'display_category' ) ) printf( '<span class="cat-links">' .__('in', 'wpzoom') . ' %s</span>', get_the_category_list( ', ' ) ); ?>
<?php if ( option::is_on( 'display_comments' ) ) { ?><span class="comments-no"><?php comments_popup_link( __('0 comments', 'wpzoom'), __('1 comment', 'wpzoom'), __('% comments', 'wpzoom'), '', __('Comments are Disabled', 'wpzoom')); ?></span><?php } ?>
<?php edit_post_link( __( 'Edit', 'wpzoom' ), '<span class="edit-link">', '</span>' ); ?>
<div class="clear"></div>
</div>
</header><!-- .entry-header -->
<div class="entry-content">
<?php if (option::get('display_content') == 'Full Content') {
the_content(''.__('Read More', 'wpzoom').'');
}
if (option::get('display_content') == 'Excerpt') {
the_excerpt();
} ?>
</div>
</section>
<div class="clear"></div>
</article><!-- #post -->