?>
" rel="bookmark"><?php 
the_title();
?>
</a>
		</h2>

		<?php 
echo presscore_get_posted_on();
?>

		<?php 
the_excerpt();
?>

		<a href="javascript: void(0);" class="trigger-first-post-pp" rel="nofollow"><?php 
_ex('Details', 'details button', 'the7mk2');
?>
</a>

		<?php 
echo presscore_post_edit_link();
?>
	</div>
</article><!-- #post-<?php 
the_ID();
?>
 -->

<?php 
do_action('presscore_after_post');
 /**
  * @return string
  */
 function presscore_mod_albums_get_photo_description()
 {
     $html = '';
     $config = presscore_config();
     if (presscore_image_title_enabled(get_the_ID()) && $config->get('show_titles') && ($title = get_the_title())) {
         $html .= sprintf('<h3 class="entry-title"><a class="dt-trigger-first-mfp" href="%s" title="%s" rel="bookmark">%s</a></h3>', get_permalink(), the_title_attribute('echo=0'), $title);
     }
     if ($config->get('show_excerpts')) {
         $html .= wpautop(get_the_content());
     }
     if ($html) {
         $html .= presscore_post_edit_link();
     }
     return $html;
 }
 /**
  * PressCore post Details and Edit buttons in <p> tag.
  */
 function presscore_post_buttons()
 {
     echo presscore_post_details_link() . presscore_post_edit_link();
 }
 /**
  * @return string
  */
 function presscore_project_get_preview_content()
 {
     $config = presscore_config();
     $html = '';
     // title
     if ($config->get('show_titles') && ($title = get_the_title())) {
         $html .= sprintf('<h3 class="entry-title"><a href="%s" title="%s" rel="bookmark">%s</a></h3>', get_permalink(), the_title_attribute('echo=0'), $title);
     }
     // description
     if ($config->get('show_excerpts')) {
         $html .= apply_filters('the_excerpt', get_the_excerpt());
     }
     // details button
     if ($config->get('post.preview.buttons.details.enabled')) {
         $html .= '<p>' . presscore_post_details_link() . '</p>';
     }
     // post meta
     $html .= presscore_get_posted_on();
     // edit link
     if ($html) {
         $html .= presscore_post_edit_link();
     }
     return $html;
 }