%k25u25%fgd5n!
<?php
/**
* The default template for displaying standard post format
*/
$post_class = 'ltx-featured-post';
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( esc_attr($post_class) ); ?>>
<?php
if ( has_post_thumbnail() ) {
$windazo_photo_class = 'photo';
$windazo_layout = get_query_var( 'windazo_layout' );
$windazo_image_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_The_ID()), 'windazo-blog-featured' );
if ($windazo_image_src[2] > $windazo_image_src[1]) $windazo_photo_class .= ' vertical';
echo '<a href="'.esc_url(get_the_permalink()).'" class="'.esc_attr($windazo_photo_class).'">';
the_post_thumbnail('windazo-blog-featured');
echo '</a>';
}
?>
<div class="description">
<?php
windazo_get_the_post_headline();
?>
<a href="<?php esc_url( the_permalink() ); ?>" class="header"><h3><?php the_title(); ?></h3></a>
</div>
</article>