-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
99 lines (87 loc) · 3.28 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
<?php
get_header();
?>
<main class="container-fluid container-lg">
<?php
$archive_title = '';
$archive_subtitle = '';
if ( is_search() ) {
global $wp_query;
$archive_title = sprintf(
'%1$s %2$s',
'<span class="color-accent">' . __( 'Search:', 'ebooks' ) . '</span>',
'“' . get_search_query() . '”'
);
if ( $wp_query->found_posts ) {
$archive_subtitle = sprintf(
/* translators: %s: Number of search results. */
_n(
'We found %s result for your search.',
'We found %s results for your search.',
$wp_query->found_posts,
'ebooks'
),
number_format_i18n( $wp_query->found_posts )
);
} else {
$archive_subtitle = __( 'We could not find any results for your search. You can give it another try through the search form below.', 'ebooks' );
}
} elseif ( is_archive() && ! have_posts() ) {
$archive_title = __( 'Nothing Found', 'ebooks' );
} elseif ( ! is_home() ) {
$archive_title = get_the_archive_title();
$archive_subtitle = get_the_archive_description();
}
if ( $archive_title || $archive_subtitle ) {
?>
<div class="row">
<div class="col-md-12 mt-3">
<?php if ( $archive_title ) { ?>
<h1 class="archive-title"><?php echo wp_kses_post( $archive_title ); ?></h1>
<?php } ?>
<?php if ( $archive_subtitle ) { ?>
<div class="archive-subtitle section-inner thin max-percentage intro-text"><?php echo wp_kses_post( wpautop( $archive_subtitle ) ); ?></div>
<?php } ?>
</div>
</div>
<?php
}
?>
<div class="row">
<div class="col-md-9">
<?php if (have_posts()) { ?>
<div class="my-3 p-3 bg-burlywood rounded shadow-sm">
<?php
$i = 0;
while (have_posts()) {
$i++;
if ($i > 1) {
echo '<hr class="post-separator styled-separator is-style-wide section-inner" aria-hidden="true" />';
}
the_post();
?>
<div class="row g-0 overflow-hidden flex-md-row mb-4 h-md-250">
<div class="col p-4 d-flex flex-column position-static">
<?php the_title( '<h2 class="h3 mb-1"><a href="' . esc_url( get_permalink() ) . '">', '</a></h2>' ); ?>
<div class="mb-1 text-muted">
<strong><?php the_category('>'); ?></strong>
<?php the_time( get_option( 'date_format' ) ); ?>
</div>
<?php the_excerpt(); ?>
</div>
<div class="col-auto d-none d-lg-block">
<?php the_post_thumbnail('cover-sm'); ?>
</div>
</div>
<?php } ?>
</div>
<?php } ?>
<?php get_template_part( 'template-parts/pagination' ); ?>
</div>
<div class="col-md-3">
<?php get_sidebar(); ?>
</div>
</div>
</main>
<?php
get_footer();