Browse Source

improve page title in list page

master
filesite 4 months ago
parent
commit
c141cf3139
  1. 13
      themes/beauty/controller/ListController.php

13
themes/beauty/controller/ListController.php

@ -91,9 +91,9 @@ Class ListController extends Controller {
//获取根目录下的readme //获取根目录下的readme
$cacheKey = $this->getCacheKey('root', 'readme', $maxScanDeep); $cacheKey = $this->getCacheKey('root', 'readme', $maxScanDeep);
$cachedData = Common::getCacheFromFile($cacheKey); $readmeFile = Common::getCacheFromFile($cacheKey);
if (!empty($cachedData)) { if (!empty($readmeFile)) {
$htmlReadme = $cachedData['htmlReadme']; $htmlReadme = $readmeFile['htmlReadme'];
} }
@ -121,18 +121,13 @@ Class ListController extends Controller {
$pageSize = $this->get('limit', 24); $pageSize = $this->get('limit', 24);
//获取网站名称和版权申明
$maxScanDeep = 0; //最大扫描目录级数
$cacheKey = $this->getCacheKey('root', 'readme', $maxScanDeep);
$readmeFile = Common::getCacheFromFile($cacheKey);
//底部版权申明配置支持 //底部版权申明配置支持
$copyright = ''; $copyright = '';
if (!empty($readmeFile['copyright'])) { if (!empty($readmeFile['copyright'])) {
$copyright = $readmeFile['copyright']; $copyright = $readmeFile['copyright'];
} }
$pageTitle = !empty($titles) ? $titles[0]['name'] : "FileSite.io"; $pageTitle = !empty($readmeFile['titles']) ? $readmeFile['titles'][0]['name']: $currentDir['directory'];
if (!empty($readmeFile['title'])) { if (!empty($readmeFile['title'])) {
$pageTitle = $readmeFile['title']; $pageTitle = $readmeFile['title'];
} }

Loading…
Cancel
Save