forked from bootscore/bootscore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
author-sidebar-left.php
96 lines (81 loc) · 3.03 KB
/
author-sidebar-left.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
<?php
/**
* Category Template: Sidebar Left
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Bootscore
*/
get_header();
?>
<div id="content" class="site-content container py-5 mt-5">
<div id="primary" class="content-area">
<!-- Hook to add something nice -->
<?php bs_after_primary(); ?>
<div class="row">
<?php get_sidebar(); ?>
<div class="col order-first order-md-last">
<main id="main" class="site-main">
<!-- Author & Bio -->
<header class="page-header mb-4 d-flex">
<div class="flex-shrink-0 me-3">
<?php echo get_avatar(get_the_author_meta('email'), '80', $default = '', $alt = '', array('class' => array('img-thumbnail rounded-circle'))); ?>
</div>
<div class="author-bio">
<h1><?php the_author(); ?></h1>
<?php the_author_meta('description'); ?>
</div>
</header>
<!-- .page-header -->
<!-- Grid Layout -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="card horizontal mb-4">
<div class="row">
<!-- Featured Image-->
<?php if (has_post_thumbnail())
echo '<div class="card-img-left-md col-lg-5">' . get_the_post_thumbnail(null, 'medium') . '</div>';
?>
<div class="col">
<div class="card-body">
<?php bootscore_category_badge(); ?>
<!-- Title -->
<h2 class="blog-post-title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h2>
<!-- Meta -->
<?php if ('post' === get_post_type()) : ?>
<small class="text-muted mb-2">
<?php
bootscore_date();
bootscore_author();
bootscore_comments();
bootscore_edit();
?>
</small>
<?php endif; ?>
<!-- Excerpt & Read more -->
<div class="card-text mt-auto">
<?php the_excerpt(); ?> <a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Read more »', 'bootscore'); ?></a>
</div>
<!-- Tags -->
<?php bootscore_tags(); ?>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<!-- Pagination -->
<div>
<?php bootscore_pagination(); ?>
</div>
</main><!-- #main -->
</div><!-- col -->
</div><!-- row -->
</div><!-- #primary -->
</div><!-- #content -->
<?php
get_footer();