first commit
This commit is contained in:
70
index.php
Normal file
70
index.php
Normal file
@ -0,0 +1,70 @@
|
||||
<?php
|
||||
/**
|
||||
* The main template file.
|
||||
*
|
||||
* This is the most generic template file in a WordPress theme
|
||||
* and one of the two required files for a theme (the other being style.css).
|
||||
* It is used to display a page when nothing more specific matches a query.
|
||||
* E.g., it puts together the home page when no home.php file exists.
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
||||
*
|
||||
* @package PressBook
|
||||
*/
|
||||
|
||||
$pressbook_archv_title = PressBook\Options\Blog::archv_title();
|
||||
|
||||
get_header();
|
||||
?>
|
||||
|
||||
<div class="pb-content-sidebar u-wrapper">
|
||||
<main id="primary" class="site-main">
|
||||
|
||||
<?php
|
||||
if ( have_posts() ) {
|
||||
if ( is_home() && ! is_front_page() ) {
|
||||
?>
|
||||
<header>
|
||||
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
||||
</header>
|
||||
<?php
|
||||
} elseif ( is_archive() ) {
|
||||
?>
|
||||
<header class="<?php echo esc_attr( $pressbook_archv_title['header'] ); ?>">
|
||||
<h1 class="<?php echo esc_attr( $pressbook_archv_title['class'] ); ?>"><?php the_archive_title(); ?></h1>
|
||||
<?php
|
||||
if ( $pressbook_archv_title['show'] ) {
|
||||
the_archive_description( '<div class="pb-archv-desc">', '</div>' );
|
||||
}
|
||||
?>
|
||||
</header>
|
||||
<?php
|
||||
} elseif ( is_search() ) {
|
||||
?>
|
||||
<header class="<?php echo esc_attr( $pressbook_archv_title['header'] ); ?>">
|
||||
<h1 class="<?php echo esc_attr( $pressbook_archv_title['class'] ); ?>"><?php /* translators: %s: search query */ printf( esc_html__( 'Search Results for: %s', 'pressbook' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?></h1>
|
||||
</header>
|
||||
<?php
|
||||
}
|
||||
|
||||
while ( have_posts() ) {
|
||||
the_post();
|
||||
get_template_part( 'template-parts/content' );
|
||||
}
|
||||
|
||||
the_posts_pagination();
|
||||
} else {
|
||||
get_template_part( 'template-parts/content', 'none' );
|
||||
}
|
||||
?>
|
||||
|
||||
</main><!-- #primary -->
|
||||
|
||||
<?php
|
||||
get_sidebar( 'left' );
|
||||
get_sidebar();
|
||||
?>
|
||||
</div><!-- .pb-content-sidebar -->
|
||||
|
||||
<?php
|
||||
get_footer();
|
Reference in New Issue
Block a user