You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
/**
 | 
						|
 * The template for displaying all pages.
 | 
						|
 *
 | 
						|
 * This is the template that displays all pages by default.
 | 
						|
 * Please note that this is the WordPress construct of pages
 | 
						|
 * and that other 'pages' on your WordPress site will use a
 | 
						|
 * different template.
 | 
						|
 *
 | 
						|
 * @since 1.0.0
 | 
						|
 */
 | 
						|
get_header();
 | 
						|
?>
 | 
						|
 | 
						|
<div class="container">
 | 
						|
	<div class="row">
 | 
						|
		<div id="primary" <?php bavotasan_primary_attr(); ?>>
 | 
						|
			<?php
 | 
						|
			while ( have_posts() ) : the_post();
 | 
						|
				?>
 | 
						|
				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 | 
						|
					<?php
 | 
						|
					if ( is_search() ) :
 | 
						|
					the_title( sprintf( '<h2 class="entry-title page-header"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
 | 
						|
					elseif ( is_front_page() ) :
 | 
						|
						the_title( '<h2 class="entry-title page-header">', '</h2>' );
 | 
						|
					else :
 | 
						|
						the_title( '<h1 class="entry-title page-header">', '</h1>' );
 | 
						|
					endif;
 | 
						|
					?>
 | 
						|
 | 
						|
				    <div class="entry-content description clearfix">
 | 
						|
					    <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'destin-basic') ); ?>
 | 
						|
				    </div><!-- .entry-content -->
 | 
						|
 | 
						|
				    <?php get_template_part( 'content', 'footer' ); ?>
 | 
						|
				</article><!-- #post-<?php the_ID(); ?> -->
 | 
						|
 | 
						|
				<?php
 | 
						|
				comments_template( '', true );
 | 
						|
			endwhile;
 | 
						|
			?>
 | 
						|
		</div>
 | 
						|
 | 
						|
		<?php get_sidebar(); ?>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<?php get_footer(); ?>
 |