/home/u336066629/websites/AmAL87tCa/public_html/wp-content/themes/asukla/content.php
<?php
/**
 * The template for displaying posts within the loop.
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<div class="inside-article">
    	<div class="article-holder">
		<?php
		// asukla_before_content hook.
		do_action( 'asukla_before_content' );
		?>

		<header class="entry-header">
			<?php
			// asukla_before_entry_title hook.
			do_action( 'asukla_before_entry_title' );

			the_title( sprintf( '<h2 class="entry-title" itemprop="headline"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );

			// asukla_after_entry_title hook.
			do_action( 'asukla_after_entry_title' );
			?>
		</header><!-- .entry-header -->

		<?php
		// asukla_after_entry_header hook.
		do_action( 'asukla_after_entry_header' ); ?>

			<div class="entry-content" itemprop="text">
				<?php
				the_content();

				wp_link_pages( array(
					'before' => '<div class="page-links">' . __( 'Pages:', 'asukla' ),
					'after'  => '</div>',
				) );
				?>
			</div><!-- .entry-content -->

		<?php 

		// asukla_after_entry_content hook.
		do_action( 'asukla_after_entry_content' );

		// asukla_after_content hook.
		do_action( 'asukla_after_content' );
		?>
        </div>
	</div><!-- .inside-article -->
</article><!-- #post-## -->