| Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 Path : /home/eglisebaa/www/wp-content/themes/hallelujah/ |
| Current File : /home/eglisebaa/www/wp-content/themes/hallelujah/image.php |
<?php
/**
* The template to display the attachment
*
* @package WordPress
* @subpackage HALLELUJAH
* @since HALLELUJAH 1.0
*/
get_header();
while ( have_posts() ) {
the_post();
get_template_part( apply_filters( 'hallelujah_filter_get_template_part', 'content', get_post_format() ), get_post_format() );
// Parent post navigation.
$hallelujah_posts_navigation = hallelujah_get_theme_option( 'posts_navigation' );
if ( 'links' == $hallelujah_posts_navigation ) {
?>
<div class="nav-links-single<?php
if ( ! hallelujah_is_off( hallelujah_get_theme_option( 'posts_navigation_fixed' ) ) ) {
echo ' nav-links-fixed fixed';
}
?>">
<?php
the_post_navigation(
array(
'prev_text' => '<span class="nav-arrow"></span>'
. '<span class="meta-nav" aria-hidden="true">' . esc_html__( 'Published in', 'hallelujah' ) . '</span> '
. '<span class="screen-reader-text">' . esc_html__( 'Previous post:', 'hallelujah' ) . '</span> '
. '<h5 class="post-title">%title</h5>'
. '<span class="post_date">%date</span>',
)
);
?>
</div>
<?php
}
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
}
get_footer();