-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcategory.php
30 lines (30 loc) · 1.53 KB
/
category.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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('template-parts/header.php');
?>
<?php $this->need('template-parts/left.php'); ?>
<div class="col-md-12 col-lg-8" id="middle">
<?php $this->need('template-parts/navbar.php'); ?>
<div class="container-fluid p-4 d-flex flex-column row-gap-5">
<?php $this->need('template-parts/category-sub.php'); ?>
<?php while ($this->next()): ?>
<?php if ($this->fields->postType): ?>
<?php if ('1' == $this->fields->postType): ?>
<?php $this->need('template-parts/index-default.php') ?>
<?php endif; ?>
<?php if ('2' == $this->fields->postType): ?>
<?php $this->need('template-parts/index-moment.php') ?>
<?php endif; ?>
<?php else: ?>
<?php $this->need('template-parts/index-default.php') ?>
<?php endif; ?>
<?php endwhile; ?>
<div class="col-12 d-flex justify-content-center align-items-center my-3" id="pagination">
<nav aria-label="Page navigation">
<?php $this->pageNav(_t('«'), _t('»'), 1, '...', array('wrapTag' => 'ul', 'wrapClass' => 'pagination justify-content-center align-items-center column-gap-3 my-0', 'itemTag' => 'li')); ?>
</nav>
</div>
</div>
</div>
<?php $this->need('template-parts/right.php'); ?>
<?php $this->need('template-parts/footer.php'); ?>