-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
103 lines (75 loc) · 2.6 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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 themebergerbasic
*/
get_header(); ?>
<?php do_action( 'themeberger_before_page' ); ?>
<div id="page" class="site">
<?php marlon_get_template_part( 'template-parts/header' ); ?>
<div id="content" class="site-content">
<?php do_action( 'themeberger_before_primary' ); ?>
<div id="primary-content" class="content-area">
<main id="main" class="site-main<?php echo is_singular() ? ' main-single' : ' hfeed h-feed" itemscope itemtype="http://schema.org/Collection'; ?>">
<?php do_action( 'themeberger_before_content' ); ?>
<?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;
while ( have_posts() ) :
the_post();
$this_type = get_post_type();
$this_format = get_post_format() ? : 'standard';
$this_kind = 'note';
if ( ! is_home() && is_front_page() ) {
$this_kind = 'homepage';
}
if ( function_exists( 'has_post_kind' ) && has_post_kind() ) {
$this_kind = strtolower( get_post_kind() );
}
if ( 'standard' === $this_format && 'note' !== $this_kind ) {
$this_format = $this_kind;
}
$template = $this_type . '-' . $this_format;
marlon_get_template_part( 'template-parts/content', $template );
endwhile;
the_posts_navigation();
the_posts_pagination(
array(
'mid_size' => 2,
'prev_text' => false,
'next_text' => false,
)
);
?>
<?php else : ?>
<?php marlon_get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
<?php if ( ! is_home() && is_front_page() ) : ?>
<?php do_action( 'themeberger_homepage' ); ?>
<?php endif; ?>
<?php do_action( 'themeberger_after_content' ); ?>
</main><!-- #main -->
</div><!-- #primary-content -->
<?php do_action( 'themeberger_after_primary' ); ?>
<?php get_sidebar(); ?>
<?php /*<div class="background-block behind full-width-block"></div>*/ ?>
</div><!-- #content -->
<?php marlon_get_template_part( 'template-parts/footer' ); ?>
</div><!-- #page -->
<?php do_action( 'themeberger_after_page' ); ?>
<?php
get_footer();