Skip to content

Commit c2b78bf

Browse files
committed
update1.8.0
1 parent 88434be commit c2b78bf

19 files changed

+922
-483
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: 主题文档
4-
url: https://blog.wehaox.com/archives/typecho-butterfly.html
4+
url: https://blog.haoi.net/archives/typecho-butterfly.html
55
about: 主题文档
66

77
- name: 主题下载

404.php

+13-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,21 @@
4848
<!--搜索end -->
4949
<div class="js-pjax">
5050
<?php if ($this->options->NewTabLink == 'on'): ?>
51-
<script>$(document).ready(function(){var a=document.getElementsByTagName("a");for(let i=0;i<a.length;i++){let domain=document.domain;let url=a[i].href;if(typeof(url)!="undefined"&&url.length!=0&&url.match(domain)==null&&url!="javascript:void(0);"){a[i].setAttribute("target","_BLANK")}}});</script>
51+
<script>
52+
document.addEventListener('DOMContentLoaded', function() {
53+
var aElements = document.getElementsByTagName('a');
54+
var domain = document.domain;
55+
for (var i = 0; i < aElements.length; i++) {
56+
var aElement = aElements[i];
57+
var url = aElement.href;
58+
if (url && url.length > 0 && url.indexOf(domain) === -1 && url !== 'javascript:void(0);') {
59+
aElement.setAttribute('target', '_blank');
60+
}
61+
}
62+
});
63+
</script>
5264
<?php endif; ?>
5365
<?php if($this->is('index')): ?>
54-
<script type="text/javascript" src="<?php $this->options->themeUrl('js/wehao.js?v1.4.0'); ?>"></script>
5566
<!--打字-->
5667
<?php if (is_array($this->options->beautifyBlock) && in_array('ShowTopimg',$this->options->beautifyBlock)): ?>
5768
<?php if(!empty($this->options->CustomSubtitle)): ?>

api/api.php

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?php
2+
3+
function routeApiRequest($apiPath)
4+
{
5+
// 定义路由表,键为路径,值为处理函数名称
6+
$routes = [
7+
'getPosts' => 'getPosts',
8+
'getPost' => 'getPost'
9+
];
10+
11+
// 提取路径中的第一个部分作为 action
12+
$parts = explode('/', $apiPath);
13+
$action = isset($parts[0]) ? filter_var($parts[0], FILTER_SANITIZE_SPECIAL_CHARS) : '';
14+
15+
// 查找对应的处理函数
16+
if (isset($routes[$action])) {
17+
$handler = $routes[$action];
18+
19+
// 如果是 getPost 路由,处理参数
20+
if ($action === 'getPost') {
21+
$cid = isset($parts[1]) ? filter_var($parts[1], FILTER_SANITIZE_NUMBER_INT) : null;
22+
call_user_func($handler, $cid);
23+
} else {
24+
call_user_func($handler);
25+
}
26+
} else {
27+
responseJson(['status' => 'error', 'message' => 'Unknown action']);
28+
}
29+
}
30+
31+
function getPosts()
32+
{
33+
$db = Typecho_Db::get();
34+
$posts = $db->fetchAll($db->select()->from('table.contents')
35+
->where('type = ?', 'post')
36+
->order('created', Typecho_Db::SORT_DESC));
37+
38+
responseJson(['status' => 'success', 'data' => $posts]);
39+
}
40+
41+
function getPost($cid)
42+
{
43+
if ($cid) {
44+
$db = Typecho_Db::get();
45+
$post = $db->fetchRow($db->select()->from('table.contents')
46+
->where('cid = ?', $cid));
47+
48+
if ($post) {
49+
responseJson(['status' => 'success', 'data' => $post]);
50+
} else {
51+
responseJson(['status' => 'error', 'message' => 'Post not found']);
52+
}
53+
} else {
54+
responseJson(['status' => 'error', 'message' => 'Invalid post ID']);
55+
}
56+
}
57+
58+
function responseJson($data)
59+
{
60+
header('Content-Type: application/json');
61+
echo json_encode($data);
62+
exit;
63+
}
64+
65+
?>

archive.php

+84-72
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,90 @@
11
<?php if (!defined('__TYPECHO_ROOT_DIR__')) {
2-
exit;
2+
exit;
33
} ?>
44
<?php $this->need('page_header.php'); ?>
55
<main class="layout" id="content-inner">
6-
<div class="recent-posts category_ui" id="recent-posts">
7-
<?php if ($this->have()): ?>
8-
<?php while ($this->next()): ?>
9-
<div class="recent-post-item">
10-
<?php if(noCover($this)): ?>
11-
<wehao class="post_cover">
12-
<a href="<?php $this->permalink() ?>">
13-
<img class="post-bg" data-lazy-src="<?php echo get_ArticleThumbnail($this);?>" src="<?php echo GetLazyLoad() ?>" onerror="this.onerror=null;this.src='<?php $this->options->themeUrl('img/404.jpg'); ?>'"></a>
14-
</wehao>
15-
<?php endif ?>
16-
<div class="recent-post-info<?php echo noCover($this) ? '' : ' no-cover'; ?>">
17-
<a class="article-title" href="<?php $this->permalink(); ?>"><?php $this->title(); ?></a>
18-
<div class="article-meta-wrap">
19-
<?php $this->sticky(); ?>
20-
<span class="post-meta-date" style="display:none;">
21-
<i class="far fa-calendar-alt"></i>
22-
<?php _e('发表于 '); ?> <?php $this->date(); ?>
23-
<time class="post-meta-date-created" datetime="<?php $this->date('c'); ?>">
24-
</time>
25-
</span>
26-
<i class="fas fa-history"></i>
27-
<span class="article-meta-label">更新于</span>
28-
<?php echo date('Y-m-d', $this->modified); ?>
29-
<time class="post-meta-date-updated" datetime="<?php echo date('Y-m-d', $this->modified); ?>" title="更新于 ">
30-
</time>
31-
<span class="article-meta">
32-
<span class="article-meta__separator">|</span>
33-
<i class="fas fa-inbox article-meta__icon"></i>
34-
<span class="post-meta-date">
35-
<?php _e('分类: '); ?>
36-
<?php $this->category(' '); ?>
37-
</span>
38-
<span class="article-meta__separator">|</span>
39-
<span class="post-meta-date" itemprop="author">
40-
<?php _e('作者: '); ?>
41-
<a itemprop="name" href="<?php $this->author->permalink(); ?>" rel="author">
42-
<?php $this->author(); ?>
43-
</a>
44-
</span>
45-
<span class="article-meta__separator">|</span>
46-
<i class="fas fa-comments"></i>
47-
<span class="post-meta-date" itemprop="interactionCount">
48-
<a itemprop="discussionUrl" href="<?php $this->permalink(); ?>#comments">
49-
<?php $this->commentsNum('0条评论', '1 条评论', '%d 条评论'); ?>
50-
</a>
51-
</span>
52-
</span>
53-
</div>
54-
<div class="content">
55-
<?php if ($this->fields->excerpt && $this->fields->excerpt != '') {
56-
echo $this->fields->excerpt;
57-
} else {
58-
echo $this->excerpt(130);
59-
}
60-
echo '<br><br><a href="',$this->permalink(),'" title="',$this->title(),'">阅读全文...</a>';
61-
?>
62-
</div>
63-
</div>
64-
</div>
65-
<?php endwhile; ?>
66-
<?php else: ?>
67-
<article class="post">
68-
<h2 class="post-title"><?php _e('没有找到内容'); ?></h2>
69-
</article>
70-
<?php endif; ?>
71-
<nav id="pagination">
72-
<?php $this->pageNav('<i class="fas fa-chevron-left fa-fw"></i>', '<i class="fas fa-chevron-right fa-fw"></i>', 1, '...', ['wrapTag' => 'div', 'wrapClass' => 'pagination', 'itemTag' => '', 'prevClass' => 'extend prev', 'nextClass' => 'extend next', 'currentClass' => 'page-number current']); ?>
73-
</nav>
74-
</div><!-- end #main -->
6+
<div class="recent-posts category_ui" id="recent-posts">
7+
<?php if ($this->have()) : ?>
8+
<?php
9+
$coverIndex = 1;
10+
while ($this->next()) :
11+
if($this->options->coverPosition === 'cross'){
12+
$sideClass = ($coverIndex % 2 == 0) ? 'right' : 'left';
13+
}else{
14+
$sideClass = $this->options->coverPosition;
15+
}
16+
?>
17+
<div class="recent-post-item">
18+
<?php if (noCover($this)) : ?>
19+
<wehao class="post_cover <?php echo $sideClass; ?>">
20+
<a href="<?php $this->permalink() ?>">
21+
<img class="post-bg" data-lazy-src="<?php echo get_ArticleThumbnail($this); ?>" src="<?php echo GetLazyLoad() ?>" onerror="this.onerror=null;this.src='<?php $this->options->themeUrl('img/404.jpg'); ?>'"></a>
22+
</wehao>
23+
<?php endif ?>
24+
<div class="recent-post-info<?php echo noCover($this) ? '' : ' no-cover'; ?>">
25+
<a class="article-title" href="<?php $this->permalink(); ?>"><?php $this->title(); ?></a>
26+
<div class="article-meta-wrap">
27+
<?php $this->sticky(); ?>
28+
<span class="post-meta-date" style="display:none;">
29+
<i class="far fa-calendar-alt"></i>
30+
<?php _e('发表于 '); ?> <?php $this->date(); ?>
31+
<time class="post-meta-date-created" datetime="<?php $this->date('c'); ?>">
32+
</time>
33+
</span>
34+
<i class="fas fa-history"></i>
35+
<span class="article-meta-label">更新于</span>
36+
<?php echo date('Y-m-d', $this->modified); ?>
37+
<time class="post-meta-date-updated" datetime="<?php echo date('Y-m-d', $this->modified); ?>" title="更新于 ">
38+
</time>
39+
<span class="article-meta">
40+
<span class="article-meta__separator">|</span>
41+
<i class="fas fa-inbox article-meta__icon"></i>
42+
<span class="post-meta-date">
43+
<?php _e('分类: '); ?>
44+
<?php $this->category(' '); ?>
45+
</span>
46+
<span class="article-meta__separator">|</span>
47+
<span class="post-meta-date" itemprop="author">
48+
<?php _e('作者: '); ?>
49+
<a itemprop="name" href="<?php $this->author->permalink(); ?>" rel="author">
50+
<?php $this->author(); ?>
51+
</a>
52+
</span>
53+
<span class="article-meta__separator">|</span>
54+
<i class="fas fa-comments"></i>
55+
<span class="post-meta-date" itemprop="interactionCount">
56+
<a itemprop="discussionUrl" href="<?php $this->permalink(); ?>#comments">
57+
<?php $this->commentsNum('0条评论', '1 条评论', '%d 条评论'); ?>
58+
</a>
59+
</span>
60+
</span>
61+
</div>
62+
<div class="content">
63+
<?php if ($this->fields->excerpt && $this->fields->excerpt != '') {
64+
echo $this->fields->excerpt;
65+
} else {
66+
echo $this->excerpt(130);
67+
}
68+
echo '<br><br><a href="', $this->permalink(), '" title="', $this->title(), '">阅读全文...</a>';
69+
?>
70+
</div>
71+
</div>
72+
</div>
73+
<?php
74+
if (noCover($this)) {
75+
$coverIndex++;
76+
}
77+
78+
endwhile; ?>
79+
<?php else : ?>
80+
<article class="post">
81+
<h2 class="post-title"><?php _e('没有找到内容'); ?></h2>
82+
</article>
83+
<?php endif; ?>
84+
<nav id="pagination">
85+
<?php $this->pageNav('<i class="fas fa-chevron-left fa-fw"></i>', '<i class="fas fa-chevron-right fa-fw"></i>', 1, '...', ['wrapTag' => 'div', 'wrapClass' => 'pagination', 'itemTag' => '', 'prevClass' => 'extend prev', 'nextClass' => 'extend next', 'currentClass' => 'page-number current']); ?>
86+
</nav>
87+
</div><!-- end #main -->
7588
<?php $this->need('sidebar.php'); ?>
76-
</main>
77-
<script type="text/javascript" src="<?php $this->options->themeUrl('js/wehao.js?v1.4'); ?>"></script>
89+
</main>
7890
<?php $this->need('footer.php'); ?>

0 commit comments

Comments
 (0)