44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!-- Post title info -->
 | 
						|
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 | 
						|
 | 
						|
<?php atticus_finch_edit_post(); ?>
 | 
						|
 | 
						|
<?php if ( get_theme_mod( 'atticus_finch_quote_title') == '1' ) { ?>
 | 
						|
	<h2 id="post-<?php the_ID(); ?>" class="post-title">
 | 
						|
		<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
 | 
						|
			<span class="fa fa-quote-left"></span>
 | 
						|
			<?php the_title(); ?>
 | 
						|
			<span class="fa fa-quote-right"></span>
 | 
						|
		</a>
 | 
						|
	</h2>
 | 
						|
 | 
						|
<!-- Post content -->
 | 
						|
<div class="post-content">
 | 
						|
 | 
						|
<?php } else { ?>
 | 
						|
	<div class="post-content post-content-quote">
 | 
						|
	<h2><a href="<?php echo get_permalink(); ?>"><span class="fa fa-quote-left notitle"></span></a></h2>
 | 
						|
<?php } ?>
 | 
						|
 | 
						|
	<?php 
 | 
						|
		if ( has_post_thumbnail() ) {
 | 
						|
			the_post_thumbnail( 'thumbnail' );
 | 
						|
		} 
 | 
						|
	?>
 | 
						|
 | 
						|
<?php
 | 
						|
	if ( get_theme_mod( 'atticus_finch_quote_excerpt' ) == '1' ) {
 | 
						|
		the_excerpt();
 | 
						|
			} else {
 | 
						|
		the_content();
 | 
						|
	}
 | 
						|
?>
 | 
						|
 | 
						|
	<div class="clear"></div>
 | 
						|
 | 
						|
</div><!-- end post content -->
 | 
						|
 | 
						|
	<?php get_template_part( 'inc/excerpt', 'short-meta' ); ?>
 | 
						|
 | 
						|
</div><!-- end "Entry" -->
 |