forked from changbin1997/Facile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
30 lines (27 loc) · 1.09 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
<?php
/**
* 这是一套简洁的博客主题 <a href="https://www.misterma.com/archives/892/" target="_blank">点击查看使用说明</a>
*
* @package Facile
* @author Mr. Ma
* @version 开发板(暂无版本号)
* @link https://www.misterma.com
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$GLOBALS['page'] = 'index';
// 检查数据库字段
checkField();
$this->need('components/header.php');
?>
<div class="container main">
<div class="row mt-4">
<div class="col-xl-8 col-lg-8 post-list">
<?php $this->need('components/post-list.php'); ?>
<nav class="page-nav my-5" aria-label="分页导航">
<?php $this->pageNav('<i class="icon-chevron-left"></i>', '<i class="icon-chevron-right"></i>', 1, '...', array('wrapTag' => 'ul', 'wrapClass' => 'pagination justify-content-center', 'itemTag' => 'li', 'textTag' => 'a', 'currentClass' => 'active', 'prevClass' => 'prev', 'nextClass' => 'next')); ?>
</nav>
</div>
<?php $this->need('components/sidebar.php'); ?>
</div>
</div>
<?php $this->need('components/footer.php'); ?>