mirror of
https://github.com/jkjoy/typecho-theme-farallon.git
synced 2026-06-27 20:34:30 +00:00
0.7.0
后台增加指定分类ID 显示指定样式
This commit is contained in:
+49
-47
@@ -3,13 +3,11 @@
|
||||
<?php
|
||||
// 获取高亮分类ID
|
||||
$travelId = Helper::options()->travel;
|
||||
|
||||
// 处理可能的情况
|
||||
$travelId = is_array($travelId)
|
||||
? intval(reset($travelId))
|
||||
: intval($travelId);
|
||||
?>
|
||||
|
||||
<header class="archive--header">
|
||||
<h2 class="post--single__title">
|
||||
<?php $this->archiveTitle(array(
|
||||
@@ -25,57 +23,63 @@ $travelId = is_array($travelId)
|
||||
<?php $this->categorydescription(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</header>
|
||||
</header>
|
||||
<div class="site--main">
|
||||
<div class="<?php echo ($this->category == $travelId) ? 'post--cards' : 'post--item'; ?>">
|
||||
<?php if ($this->have()): ?>
|
||||
<!-- 高亮分类的文章 -->
|
||||
<div class="post--cards">
|
||||
<?php while($this->next()): ?>
|
||||
<?php
|
||||
// 检查是否属于高亮分类
|
||||
$istravel = array_reduce($this->categories, function($carry, $category) use ($travelId) {
|
||||
return $carry || (intval($category['mid']) === $travelId);
|
||||
}, false);
|
||||
if ($istravel):
|
||||
// 获取文章图片
|
||||
$default_thumbnail = Helper::options()->themeUrl . '/assets/images/nopic.svg';
|
||||
$firstImage = img_postthumb($this->cid);
|
||||
if (empty($firstImage)) {
|
||||
$firstImage = $default_thumbnail;
|
||||
}
|
||||
$cover = $this->fields->cover;
|
||||
$imageToDisplay = $cover;
|
||||
if (empty($imageToDisplay)) {
|
||||
$imageToDisplay = $firstImage;
|
||||
}
|
||||
?>
|
||||
<article class="post--card">
|
||||
<img src="<?php echo $imageToDisplay; ?>" alt="<?php $this->title() ?>" class="cover" itemprop="image"/>
|
||||
<div class="content">
|
||||
<h2 class="post--title">
|
||||
<a href="<?php $this->permalink() ?>">
|
||||
<?php $this->title() ?>
|
||||
</a>
|
||||
</h2>
|
||||
<div class="description">
|
||||
<?php $this->excerpt(20, '...'); ?>
|
||||
</div>
|
||||
<div class="meta">
|
||||
<svg class="icon" viewBox="0 0 1024 1024" width="16" height="16">
|
||||
<path d="M512 97.52381c228.912762 0 414.47619 185.563429 414.47619 414.47619s-185.563429 414.47619-414.47619 414.47619S97.52381 740.912762 97.52381 512 283.087238 97.52381 512 97.52381z m0 73.142857C323.486476 170.666667 170.666667 323.486476 170.666667 512s152.81981 341.333333 341.333333 341.333333 341.333333-152.81981 341.333333-341.333333S700.513524 170.666667 512 170.666667z m36.571429 89.697523v229.86362h160.865523v73.142857H512a36.571429 36.571429 0 0 1-36.571429-36.571429V260.388571h73.142858z"></path>
|
||||
</svg>
|
||||
<time datetime='<?php $this->date('Y-m-d'); ?>' class="humane--time">
|
||||
<?php $this->date('Y-m-d'); ?>
|
||||
</time>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
<?php endif; ?>
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<!-- 正常分类的文章 -->
|
||||
<?php while($this->next()): ?>
|
||||
<?php
|
||||
// 使用数组函数优化分类检查
|
||||
// 检查是否属于高亮分类
|
||||
$istravel = array_reduce($this->categories, function($carry, $category) use ($travelId) {
|
||||
return $carry || (intval($category['mid']) === $travelId);
|
||||
}, false);
|
||||
|
||||
// 获取文章图片
|
||||
$default_thumbnail = Helper::options()->themeUrl . '/assets/images/nopic.svg';
|
||||
$firstImage = img_postthumb($this->cid);
|
||||
if (empty($firstImage)) {
|
||||
$firstImage = $default_thumbnail;
|
||||
}
|
||||
$cover = $this->fields->cover;
|
||||
$imageToDisplay = $cover;
|
||||
if (empty($imageToDisplay)) {
|
||||
$imageToDisplay = $firstImage;
|
||||
}
|
||||
if (!$istravel):
|
||||
?>
|
||||
|
||||
<?php if ($istravel): ?>
|
||||
<!-- 高亮分类下的样式 -->
|
||||
|
||||
<article class="post--card">
|
||||
<img src="<?php echo $imageToDisplay; ?>" alt="<?php $this->title() ?>" class="cover" itemprop="image"/>
|
||||
<div class="content">
|
||||
<h2 class="post--title">
|
||||
<a href="<?php $this->permalink() ?>">
|
||||
<?php $this->title() ?>
|
||||
</a>
|
||||
</h2>
|
||||
<div class="description">
|
||||
<?php $this->excerpt(20, '...'); ?>
|
||||
</div>
|
||||
<div class="meta">
|
||||
<svg class="icon" viewBox="0 0 1024 1024" width="16" height="16">
|
||||
<path d="M512 97.52381c228.912762 0 414.47619 185.563429 414.47619 414.47619s-185.563429 414.47619-414.47619 414.47619S97.52381 740.912762 97.52381 512 283.087238 97.52381 512 97.52381z m0 73.142857C323.486476 170.666667 170.666667 323.486476 170.666667 512s152.81981 341.333333 341.333333 341.333333 341.333333-152.81981 341.333333-341.333333S700.513524 170.666667 512 170.666667z m36.571429 89.697523v229.86362h160.865523v73.142857H512a36.571429 36.571429 0 0 1-36.571429-36.571429V260.388571h73.142858z"></path>
|
||||
</svg>
|
||||
<time datetime='<?php $this->date('Y-m-d'); ?>' class="humane--time">
|
||||
<?php $this->date('Y-m-d'); ?>
|
||||
</time>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<?php else: ?>
|
||||
<!-- 正常分类下的样式 -->
|
||||
<article class="post--item">
|
||||
<div class="content">
|
||||
<h2 class="post--title">
|
||||
@@ -108,9 +112,7 @@ $travelId = is_array($travelId)
|
||||
</div>
|
||||
</article>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
</div>
|
||||
<?php $this->pageNav(
|
||||
' ',
|
||||
' ',
|
||||
|
||||
Reference in New Issue
Block a user