* Template for link post format
 * 
 * @package son-of-a-saint
 */
?>
<article id="post-<?php 
the_ID();
?>
" <?php 
post_class();
?>
>
	<header class="entry-header">
		<h1 class="entry-title">
			<a href="<?php 
echo esc_url(bootstrapBasicGetLinkInContent());
?>
"><?php 
the_title();
?>
</a>
		</h1>

		<div class="entry-meta">
			<?php 
bootstrapBasicPostOn();
?>
		</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
<!-- debug: bootstrap-basic/content-link.php -->
<?php
/**
 * Template for link post format
 * 
 * @package bootstrap-basic
 */
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<header class="entry-header">
		<h1 class="entry-title">
			<a href="<?php echo esc_url(bootstrapBasicGetLinkInContent()); ?>"><?php the_title(); ?></a>
		</h1>

		<div class="entry-meta">
			<?php 
			bootstrapBasicPostOn();
			?>
		</div><!-- .entry-meta -->
	</header><!-- .entry-header -->

	<div class="entry-content">
		<?php the_content(bootstrapBasicMoreLinkText()); ?> 
		<div class="clearfix"></div>
		<?php
		/**
		 * This wp_link_pages option adapt to use bootstrap pagination style.
		 * The other part of this pager is in inc/template-tags.php function name bootstrapBasicLinkPagesLink() which is called by wp_link_pages_link filter.
		 */
		wp_link_pages(array(
			'before' => '<div class="page-links">' . __('Pages:', 'bootstrap-basic') . ' <ul class="pagination">',