Skip to content

Commit

Permalink
调整了后台主题设置的一些说明
Browse files Browse the repository at this point in the history
1. functions.php 在后台设置页加入了指向 Facile 帮助文档的链接
2. functions.php 更改了指向友情链接设置说明的错误链接
3. components/sidebar.php 调整了侧边栏宽度相关的 class
4. README.md 的侧边栏组件列表中加入了自定义
  • Loading branch information
changbin1997 committed Jun 15, 2023
1 parent 3a69876 commit 56f3d18
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ ECharts 的库比较大,所以只引入了饼图和日历图,而且只会在
- 文章归档
- 其它功能
- 友情链接
- 目录
- 文章的章节目录
* 自定义

侧边栏的每个组件你都可以选择开启或关闭,你还可以自定义侧边栏的组件排序顺序。

Expand Down
2 changes: 1 addition & 1 deletion components/sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$components = explode(',', $components);
?>

<aside class="col-xl-4 col-lg-4 sidebar pl-4 pl-lg-3">
<aside class="col-xl-4 col-lg-4 sidebar pl-lg-3 pl-xl-3">
<?php foreach ($components as $component): ?>
<?php if ($component == '博客信息'): ?>
<!--博客信息-->
Expand Down
8 changes: 4 additions & 4 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function themeFields($layout) {
function themeConfig($form) {
echo <<<EOT
<p>您现在使用的是 Facile 的开发板,开发板暂无版本号。<a href="https://github.com/changbin1997/Facile/releases" target="_blank">点击查看发行版</a></p>
<p>主题使用帮助可以简单参考 <a href="https://mwordstar.misterma.com/" target="_blank">MWordStar</a> 的帮助文档,遇到问题也可以到 <a href="https://www.misterma.com/msg.html" target="_blank">留言板</a> 或 <a href="https://www.misterma.com/archives/899/" target="_blank">Facile 介绍页</a> 留言。因为我有两个主题,为了更高效的解决问题,建议到 <a href="https://www.misterma.com/archives/899/" target="_blank">Facile 介绍页</a> 留言。</p>
<p>主题使用帮助 <a href="https://facile.misterma.com/" target="_blank">点击查看帮助文档</a> ,遇到问题也可以到 <a href="https://www.misterma.com/msg.html" target="_blank">留言板</a> 或 <a href="https://www.misterma.com/archives/899/" target="_blank">Facile 介绍页</a> 留言。因为我有两个主题,为了更高效的解决问题,建议到 <a href="https://www.misterma.com/archives/899/" target="_blank">Facile 介绍页</a> 留言。</p>
<button id="export-btn" type="button" class="btn">导出主题配置文件</button>
<button id="import-btn" type="button" class="btn">导入主题配置文件</button>
<a href="javascript:;" id="download-file" style="display: none;">下载</a>
Expand Down Expand Up @@ -202,13 +202,13 @@ function themeConfig($form) {
), 'show', _t('Emoji 表情面板'), _t('开启后在评论内容输入框下方会出现一个 Emoji 表情按钮,点击可以打开表情面板。')));

// 首页友链
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('homeLinks', null, null, _t('首页友情链接'), _t('首页友情链接只会显示在首页的侧边栏,需要 JSON 格式数据。如需查看详细说明可以访问:https://mwordstar.misterma.com/docs/doc10 。')));
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('homeLinks', null, null, _t('首页友情链接'), _t('首页友情链接只会显示在首页的侧边栏,需要 JSON 格式数据。 <a href="https://facile.misterma.com/%E4%B8%BB%E9%A2%98%E8%AE%BE%E7%BD%AE.html" target="_blank">点击查看友情链接设置说明</a>')));

// 全站友链
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('links', null, null, _t('全站友情链接'), _t('全站友情链接会在每个页面的侧边栏显示,需要 JSON 格式数据。如需查看详细说明可以访问:https://mwordstar.misterma.com/docs/doc10 。')));
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('links', null, null, _t('全站友情链接'), _t('全站友情链接会在每个页面的侧边栏显示,需要 JSON 格式数据。<a href="https://facile.misterma.com/%E4%B8%BB%E9%A2%98%E8%AE%BE%E7%BD%AE.html" target="_blank">点击查看友情链接设置说明</a>')));

// 独立页友链
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('pageLinks', null, null, _t('独立页友情链接'), _t('独立页友情链接只会在友情链接的页面显示,需要 JSON 格式 数据。如果要使用独立页友情链接需要创建一个独立页面,把 自定义模板设置为 友情链接。如需查看详细说明可以访问:https://mwordstar.misterma.com/docs/doc10 。')));
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('pageLinks', null, null, _t('独立页友情链接'), _t('独立页友情链接只会在友情链接的页面显示,需要 JSON 格式 数据。如果要使用独立页友情链接需要创建一个独立页面,把 自定义模板设置为 <b style="color: #C7254E;">友情链接</b>。<a href="https://facile.misterma.com/%E4%B8%BB%E9%A2%98%E8%AE%BE%E7%BD%AE.html" target="_blank">点击查看友情链接设置说明</a>')));

// 自定义CSS
$form->addInput(new Typecho_Widget_Helper_Form_Element_Textarea('cssCode', null, null, _t('自定义 CSS'), _t('通过自定义 CSS 您可以很方便的设置页面样式,自定义 CSS 不会影响网站源代码。')));
Expand Down

0 comments on commit 56f3d18

Please sign in to comment.