-
Notifications
You must be signed in to change notification settings - Fork 0
/
deneme
90 lines (69 loc) · 2.55 KB
/
deneme
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
<?php
/**
* Category Template: Equal Height Sidebar Right
*
* @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">
<div class="col">
<main id="main" class="site-main">
<header class="page-header mb-4">
<h1><?php single_cat_title(); ?></h1>
<?php the_archive_description('<div class="archive-description">', '</div>'); ?>
</header>
<div class="row">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="col-md-12 col-lg-6 col-xxl-4 mb-4">
<div class="card h-100">
<?php the_post_thumbnail('medium', array('class' => 'card-img-top')); ?>
<div class="card-body d-flex flex-column">
<?php bootscore_category_badge(); ?>
<h2 class="blog-post-title">
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h2>
<?php if ('post' === get_post_type()) : ?>
<small class="text-muted mb-2">
<?php
bootscore_date();
bootscore_author();
bootscore_comments();
bootscore_edit();
?>
</small>
<?php endif; ?>
<div class="card-text">
<?php the_excerpt(); ?>
</div>
<div class="mt-auto">
<a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Read more »', 'bootscore'); ?></a>
</div>
<?php bootscore_tags(); ?>
</div>
</div><!-- card -->
</div><!-- col -->
<?php endwhile; ?>
<?php endif; ?>
</div>
<!-- Pagination -->
<div>
<?php bootscore_pagination(); ?>
</div>
</main><!-- #main -->
</div><!-- col -->
<?php get_sidebar(); ?>
</div><!-- row -->
</div><!-- #primary -->
</div><!-- #content -->
<?php
get_footer();