| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/home.php.tar |
home/xbodynamge/www/wp-content/themes/zerif-lite/home.php 0000644 00000004207 15111733462 0017561 0 ustar 00 <?php
/**
* File home.php
*
* @package zerif-lite
*/
get_header();
if ( ! zerif_check_if_old_version_of_theme() ) {
$blog_header_title = get_theme_mod( 'zerif_blog_header_title', esc_html__( 'Blog', 'zerif-lite' ) );
$blog_header_subtitle = get_theme_mod( 'zerif_blog_header_subtitle', esc_html__( 'Zerif supports a custom frontpage', 'zerif-lite' ) );
if ( ! empty( $blog_header_title ) || ! empty( $blog_header_subtitle ) ) { ?>
<div class="blog-header-wrap">
<div class="blog-header-content-wrap">
<?php if ( ! empty( $blog_header_title ) ) { ?>
<h1 class="intro-text"><?php echo esc_html( $blog_header_title ); ?></h1>
<?php
}
if ( ! empty( $blog_header_subtitle ) ) {
?>
<p class="blog-header-subtitle"><?php echo esc_html( $blog_header_subtitle ); ?></p>
<?php } ?>
</div>
</div>
<?php
}
}
?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<?php zerif_after_header_trigger(); ?>
<div id="content" class="site-content">
<div class="container">
<div class="content-left-wrap col-md-9">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
/**
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
echo get_the_posts_navigation(
array(
/* translators: Newer posts arrow */
'next_text' => sprintf( __( 'Newer posts %s', 'zerif-lite' ), '<span class="meta-nav">→</span>' ),
/* translators: Older posts arrow */
'prev_text' => sprintf( __( '%s Older posts', 'zerif-lite' ), '<span class="meta-nav">←</span>' ),
)
);
} else {
get_template_part( 'content', 'none' );
}
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .content-left-wrap -->
<?php zerif_sidebar_trigger(); ?>
</div><!-- .container -->
<?php get_footer(); ?>
home/xbodynamge/lebauwcentre/wp-content/themes/zerif-lite/home.php 0000644 00000004213 15111757541 0021416 0 ustar 00 <?php
/**
* File home.php
*
* @package zerif-lite
*/
get_header();
if ( ! zerif_check_if_old_version_of_theme() ) {
$blog_header_title = get_theme_mod( 'zerif_blog_header_title', esc_html__( 'Blog', 'zerif-lite' ) );
$blog_header_subtitle = get_theme_mod( 'zerif_blog_header_subtitle', esc_html__( 'Zerif supports a custom frontpage', 'zerif-lite' ) );
if ( ! empty( $blog_header_title ) || ! empty( $blog_header_subtitle ) ) { ?>
<div class="blog-header-wrap">
<div class="blog-header-content-wrap">
<?php if ( ! empty( $blog_header_title ) ) { ?>
<h1 class="intro-text"><?php echo esc_html( $blog_header_title ); ?></h1>
<?php
}
if ( ! empty( $blog_header_subtitle ) ) {
?>
<p class="blog-header-subtitle"><?php echo esc_html( $blog_header_subtitle ); ?></p>
<?php } ?>
</div>
</div>
<?php
}
}
?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<?php zerif_after_header_trigger(); ?>
<div id="content" class="site-content">
<div class="container">
<div class="content-left-wrap col-md-9">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
/**
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
echo get_the_posts_navigation(
array(
/* translators: Newer posts arrow */
'next_text' => sprintf( __( 'Newer posts %s', 'zerif-lite' ), '<span class="meta-nav">→</span>' ),
/* translators: Older posts arrow */
'prev_text' => sprintf( __( '%s Older posts', 'zerif-lite' ), '<span class="meta-nav">←</span>' ),
)
);
} else {
get_template_part( 'content', 'none' );
}
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .content-left-wrap -->
<?php zerif_sidebar_trigger(); ?>
</div><!-- .container -->
<?php get_footer(); ?>
home/xbodynamge/lebauwcentre/wp-content/themes/onepress/home.php 0000644 00000003701 15112216432 0021171 0 ustar 00 <?php
/**
* The front page template file.
*
* The front-page.php template file is used to render your site’s front page,
* whether the front page displays the blog posts index (mentioned above) or a static page.
* The front page template takes precedence over the blog posts index (home.php) template.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#front-page-display
*
* @package OnePress
*/
get_header();
$layout = onepress_get_layout();
/**
* @since 2.0.0
* @see onepress_display_page_title
*/
do_action( 'onepress_page_before_content' );
?>
<div id="content" class="site-content">
<?php onepress_breadcrumb(); ?>
<div id="content-inside" class="container <?php echo esc_attr( $layout ); ?>">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
?>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php if ( $layout != 'no-sidebar' ) { ?>
<?php get_sidebar(); ?>
<?php } ?>
</div><!--#content-inside -->
</div><!-- #content -->
<?php get_footer(); ?>
home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/home.php 0000604 00000004213 15112460477 0021617 0 ustar 00 <?php
/**
* File home.php
*
* @package zerif-lite
*/
get_header();
if ( ! zerif_check_if_old_version_of_theme() ) {
$blog_header_title = get_theme_mod( 'zerif_blog_header_title', esc_html__( 'Blog', 'zerif-lite' ) );
$blog_header_subtitle = get_theme_mod( 'zerif_blog_header_subtitle', esc_html__( 'Zerif supports a custom frontpage', 'zerif-lite' ) );
if ( ! empty( $blog_header_title ) || ! empty( $blog_header_subtitle ) ) { ?>
<div class="blog-header-wrap">
<div class="blog-header-content-wrap">
<?php if ( ! empty( $blog_header_title ) ) { ?>
<h1 class="intro-text"><?php echo esc_html( $blog_header_title ); ?></h1>
<?php
}
if ( ! empty( $blog_header_subtitle ) ) {
?>
<p class="blog-header-subtitle"><?php echo esc_html( $blog_header_subtitle ); ?></p>
<?php } ?>
</div>
</div>
<?php
}
}
?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<?php zerif_after_header_trigger(); ?>
<div id="content" class="site-content">
<div class="container">
<div class="content-left-wrap col-md-9">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
/**
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
echo get_the_posts_navigation(
array(
/* translators: Newer posts arrow */
'next_text' => sprintf( __( 'Newer posts %s', 'zerif-lite' ), '<span class="meta-nav">→</span>' ),
/* translators: Older posts arrow */
'prev_text' => sprintf( __( '%s Older posts', 'zerif-lite' ), '<span class="meta-nav">←</span>' ),
)
);
} else {
get_template_part( 'content', 'none' );
}
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .content-left-wrap -->
<?php zerif_sidebar_trigger(); ?>
</div><!-- .container -->
<?php get_footer(); ?>
home/xbodynamge/namtation/wp-content/themes/zerif-lite/home.php 0000644 00000004213 15112775260 0020727 0 ustar 00 <?php
/**
* File home.php
*
* @package zerif-lite
*/
get_header();
if ( ! zerif_check_if_old_version_of_theme() ) {
$blog_header_title = get_theme_mod( 'zerif_blog_header_title', esc_html__( 'Blog', 'zerif-lite' ) );
$blog_header_subtitle = get_theme_mod( 'zerif_blog_header_subtitle', esc_html__( 'Zerif supports a custom frontpage', 'zerif-lite' ) );
if ( ! empty( $blog_header_title ) || ! empty( $blog_header_subtitle ) ) { ?>
<div class="blog-header-wrap">
<div class="blog-header-content-wrap">
<?php if ( ! empty( $blog_header_title ) ) { ?>
<h1 class="intro-text"><?php echo esc_html( $blog_header_title ); ?></h1>
<?php
}
if ( ! empty( $blog_header_subtitle ) ) {
?>
<p class="blog-header-subtitle"><?php echo esc_html( $blog_header_subtitle ); ?></p>
<?php } ?>
</div>
</div>
<?php
}
}
?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<?php zerif_after_header_trigger(); ?>
<div id="content" class="site-content">
<div class="container">
<div class="content-left-wrap col-md-9">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
/**
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
echo get_the_posts_navigation(
array(
/* translators: Newer posts arrow */
'next_text' => sprintf( __( 'Newer posts %s', 'zerif-lite' ), '<span class="meta-nav">→</span>' ),
/* translators: Older posts arrow */
'prev_text' => sprintf( __( '%s Older posts', 'zerif-lite' ), '<span class="meta-nav">←</span>' ),
)
);
} else {
get_template_part( 'content', 'none' );
}
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .content-left-wrap -->
<?php zerif_sidebar_trigger(); ?>
</div><!-- .container -->
<?php get_footer(); ?>
home/xbodynamge/dev/wp-content/themes/zerif-lite/home.php 0000644 00000004213 15113560647 0017515 0 ustar 00 <?php
/**
* File home.php
*
* @package zerif-lite
*/
get_header();
if ( ! zerif_check_if_old_version_of_theme() ) {
$blog_header_title = get_theme_mod( 'zerif_blog_header_title', esc_html__( 'Blog', 'zerif-lite' ) );
$blog_header_subtitle = get_theme_mod( 'zerif_blog_header_subtitle', esc_html__( 'Zerif supports a custom frontpage', 'zerif-lite' ) );
if ( ! empty( $blog_header_title ) || ! empty( $blog_header_subtitle ) ) { ?>
<div class="blog-header-wrap">
<div class="blog-header-content-wrap">
<?php if ( ! empty( $blog_header_title ) ) { ?>
<h1 class="intro-text"><?php echo esc_html( $blog_header_title ); ?></h1>
<?php
}
if ( ! empty( $blog_header_subtitle ) ) {
?>
<p class="blog-header-subtitle"><?php echo esc_html( $blog_header_subtitle ); ?></p>
<?php } ?>
</div>
</div>
<?php
}
}
?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<?php zerif_after_header_trigger(); ?>
<div id="content" class="site-content">
<div class="container">
<div class="content-left-wrap col-md-9">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
/**
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
}
echo get_the_posts_navigation(
array(
/* translators: Newer posts arrow */
'next_text' => sprintf( __( 'Newer posts %s', 'zerif-lite' ), '<span class="meta-nav">→</span>' ),
/* translators: Older posts arrow */
'prev_text' => sprintf( __( '%s Older posts', 'zerif-lite' ), '<span class="meta-nav">←</span>' ),
)
);
} else {
get_template_part( 'content', 'none' );
}
?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .content-left-wrap -->
<?php zerif_sidebar_trigger(); ?>
</div><!-- .container -->
<?php get_footer(); ?>