forked from xiaopanglian/icefox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (27 loc) · 972 Bytes
/
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
<?php
/**
* 朋友圈Icefox主题
* 全新版本,优化UI,优化交互
* 示例站:<a href="http://0ru.cn" target="_blank">http://0ru.cn/</a>
*
* @package Icefox
* @author 小胖脸
* @version 1.6.8
* @link http://xiaopanglian.com/
*/
if (!defined('__TYPECHO_ROOT_DIR__'))
exit;
?>
<?php $this->need('/components/header.php'); ?>
<div class="bg-white dark:bg-[#323232] dark:text-[#cccccc] mx-auto main-container" :class="{'dark':darkMode}">
<?php $this->need('/components/option-header.php'); ?>
<?php $this->need('/components/post-list-top.php'); ?>
<?php // $this->need('/components/option-article-top.php'); ?>
<div class="article-container">
<?php $this->need('/components/post-list.php'); ?>
<?php //while ($this->next()): ?>
<?php //$this->need('/components/option-article.php'); ?>
<?php //endwhile; ?>
</div>
</div><!-- end #main-->
<?php $this->need('/components/footer.php'); ?>