Skip to content

Commit

Permalink
V0.7.19 2020年7月19日更新
Browse files Browse the repository at this point in the history
  • Loading branch information
wclk committed Nov 20, 2020
0 parents commit 197f687
Show file tree
Hide file tree
Showing 97 changed files with 58,795 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Typecho导航主题WebStack_钻芒二开版

#### 介绍
Typecho导航主题WebStack_钻芒二开版

* 钻芒博客: [www.zmki.cn]
* Demo: [Tool.zmki.cn]


#### 安装教程
1. 请将WebStack_zmki_X.XX.XX.zip解压到typecho主题目录 /usr/themes 下使用
2. 如果启用主题提示 主题风格不存在,请将主题文件夹名称改为WebStack

#### 版本说明

+ __V0.7.19更新 2020年7月19日__
* 修复了心知天气调用API,目前免费版20次调用/分钟,有需求可自行购买更换 [教程]
* 调整了Logo在手机端和电脑端因图片尺寸显示过大的问题
* 新增手机端每行显示导航数量控制,可选: 单栏 双栏 三栏
* 新增电脑端每行显示导航数量控制,可选: 单栏 双栏 三栏 四栏 五栏 六栏 七栏 八栏
* 美化后台页面布局引入图标并新增备份与恢复功能
* 去除了后台之前逻辑性混乱的自定义站点名称和后缀功能,现直接去设置调整即可

+ __V0.6.1更新 2020年6月1日__
* 调整顶部搜索栏,支持多平台快捷搜索及热词功能。搜索功能鸡肋-1
* 底部新增友情链接模块,(由于typecho原因。需配合配套插件使用,插件下载入口在主题设置内)
* 提示: 如果启用友情链接需开启配套插件。否则会报错。
* 友情链接管理在typecho后台-管理-友情链接。

+ __V0.4.9更新 2020年4月9日__
* 新增顶部彩色4个小模块,后台可设置名称链接和图标
* 微调主题整体风格,更偏向于扁平化
* 新增后台可自定义版权,加这个是为了让某些人别删除我们的链接啦!
* 新增后台添加统计代码
* 调整顶部搜索模板显示位置
* 手机端显示小bug修复

+ __V0.2.29更新 2020年2月29日__
* 修复之前的包缺少排序文件。已放在包内并附有文档
* 之前版本文件夹结构问题导致安装出现的问题在此说声抱歉,可能影响了很多不熟悉Typecho人的使用。已修复。按包内文档
* 的解压目录上传解压即可
* 发现BUG等问题欢迎大家加群反馈。 737656800

+ __V0.2.23更新 2020年2月23日__
* 修复前端功能开关导致的显示问题

+ __V0.2.11 第一个版本 2020年2月11日__
* 由钻芒博客二次,内容包括新增顶栏和优化底栏及悬浮窗等N项。
* 适配全新暗黑模式,支持cooke保存。
* 设置参数已整合至后台,无需手动修改HTML。
* 基于SEOGO.ME运营狗2019.12.01版本 此版本于2020年2月9日23:07:54二开初次打包

#### 主题qq交流群

![主题交流QQ群:737656800](https://a-oss.zmki.cn/2020/20200214-a874495080831.png)
[www.zmki.cn]: https://wwww.zmki.cn
[Tool.zmki.cn]: https://tool.zmki.cn
48 changes: 48 additions & 0 deletions comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<div id="comments">
<?php $this->comments()->to($comments); ?>
<?php if ($comments->have()): ?>
<h3><?php $this->commentsNum(_t('暂无评论'), _t('仅有一条评论'), _t('已有 %d 条评论')); ?></h3>

<?php $comments->listComments(); ?>

<?php $comments->pageNav('&laquo; 前一页', '后一页 &raquo;'); ?>

<?php endif; ?>

<?php if($this->allow('comment')): ?>
<div id="<?php $this->respondId(); ?>" class="respond">
<div class="cancel-comment-reply">
<?php $comments->cancelReply(); ?>
</div>

<h3 id="response"><?php _e('添加新评论'); ?></h3>
<form method="post" action="<?php $this->commentUrl() ?>" id="comment-form" role="form">
<?php if($this->user->hasLogin()): ?>
<p><?php _e('登录身份: '); ?><a href="<?php $this->options->profileUrl(); ?>"><?php $this->user->screenName(); ?></a>. <a href="<?php $this->options->logoutUrl(); ?>" title="Logout"><?php _e('退出'); ?> &raquo;</a></p>
<?php else: ?>
<ul class="compost">
<li>
<input type="text" name="author" id="author" class="text" placeholder="<?php _e('昵称(必填)'); ?>" value="<?php $this->remember('author'); ?>" required />
</li>
<li>
<input type="email" name="mail" id="mail" class="text" placeholder="<?php _e('邮箱(必填)'); ?>" value="<?php $this->remember('mail'); ?>"<?php if ($this->options->commentsRequireMail): ?> required<?php endif; ?> />
</li>
<li>
<input type="url" name="url" id="url" class="text" placeholder="<?php _e('网址(选填)'); ?>" value="<?php $this->remember('url'); ?>"<?php if ($this->options->commentsRequireURL): ?> required<?php endif; ?> />
</li>
</ul>
<?php endif; ?>
<div>
<textarea rows="8" cols="50" name="text" id="textarea" placeholder="<?php _e('说点什么吧'); ?>" class="textarea" required><?php $this->remember('text'); ?></textarea>
</div>
<p>
<button type="submit" class="submit"><?php _e('提交评论'); ?></button>
</p>
</form>
</div>
<?php else: ?>
<h3><?php _e('评论已关闭'); ?></h3>
<?php endif; ?>
</div>
<style>#comments{padding-top:15px}.comment-list,.comment-list ol{list-style:none;margin:0;padding:0}.comment-list li{padding:14px;margin-top:10px;border:1px solid #EEE}.comment-list li.comment-level-odd{background:#f6f6f3}.comment-list li.comment-level-even{background:#FFF}.comment-list li.comment-by-author{background:#fff9e8}.comment-list li .comment-reply{text-align:right;font-size:.92857em}.comment-meta a{color:#999;font-size:.92857em}.comment-author{display:block;margin-bottom:3px;color:#444}.comment-author .avatar{float:left;margin-right:10px}.comment-author cite{font-weight:bold;font-style:normal}.comment-list .respond{margin-top:15px;border-top:1px solid #EEE}.respond .cancel-comment-reply{float:right;margin-top:15px;font-size:.92857em}#comment-form label{display:block;margin-bottom:.5em;font-weight:bold}#comment-form .required:after{content:" *";color:#C00}.respond ul{margin:0}.respond .compost{overflow:hidden;padding:10px 0 0}.respond .compost li input{width:160px;height:24px;padding-left:4px;border:1px solid #ddd;color:#666}.respond .compost li{float:left;margin-right:6px;margin-bottom:10px;list-style-type:none}.respond .textarea{width:100%;border:1px solid #ddd}.comment-content{margin:10px 0 0 45px}</style>
1 change: 1 addition & 0 deletions css/bootstrap.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions css/font-awesome.min.css

Large diffs are not rendered by default.

85 changes: 85 additions & 0 deletions css/fonts/elusive/css/animation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
Loading

0 comments on commit 197f687

Please sign in to comment.