/**
 * Template part for gallery posts
 *
 * @version 1.0
 */
?>
<article <?php 
post_class();
?>
 id="post-<?php 
the_ID();
?>
">
	<header class="entry-header">
		<?php 
hannover_image_from_gallery_or_image_post('large', $post);
hannover_the_title('h2', true);
?>
	</header>
	<div class="entry-content">
		<?php 
if (has_excerpt()) {
    the_excerpt();
}
?>
	</div>
	<footer>
		<p><a href="<?php 
the_permalink();
?>
"
<?php

/**
 * Default template for portfolio elements in the overview templates
 *
 * @version 1.0
 */
?>
<article <?php 
post_class('element');
?>
 id="post-<?php 
the_ID();
?>
">
	<a href="<?php 
the_permalink();
?>
">
		<h2 class="screen-reader-text"><?php 
the_title();
?>
</h2>
		<?php 
hannover_image_from_gallery_or_image_post('thumbnail', $post);
?>
	</a>
</article>