- Facile 是一套简洁的 Typecho 博客主题.
- 主题演示地址:https://www.misterma.com/
- 主题下载地址:https://github.com/changbin1997/Facile/releases
- 下载时请选择 Facile-bundle.zip ,否则前端 JS 代码无法在 IE 系列浏览器运行。
- 主题使用说明:https://facile.misterma.com/
- 个人增加了侧边栏随机语录,把它加在主题配色上面就行了
<!--随机语录-->
<div class="one pc mt-3 pt-3 border-top">
<?php if ($this->is('index')): ?>
" <?php
$quotes_file = dirname(__DIR__, 1) . '/one.txt';
$quotes = file($quotes_file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$random_quote = $quotes[array_rand($quotes)];
echo htmlspecialchars($random_quote);
?>"
<?php endif; ?>

暂无评论