Typecho简洁主题Facile

Facile是一套简洁的 Typecho 博客主题

Typecho简洁主题Facile-语络

<!--随机语录-->
<div class="one pc mt-3 pt-3 border-top">
<?php if ($this->is('index')): ?>
"&nbsp;<?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; ?>