Stellar主题设置
前言
记录一下自己从默认主题样式到现在本网站的样子中间都修改了哪些地方,也作为完善博客期间的备份。
博客引用资源
本地资源文件夹
将头像、图标、css、js等文件放在source下:
静态资源本地化
有两次发现通过jsdelivr引入的静态资源会失效,为了网站的稳定性,决定将所有通过jsdelivr引入的静态资源保存到本地,防止失效后网站无法访问。
引用落霞孤鹜字体
tale/_config.yml1 2 3
| inject: head: - <link rel="stylesheet" href="https://npm.elemecdn.com/lxgw-wenkai-screen-webfont/style.css" media="print" onload="this.media='all'">
|
tale/_config.stellar.yml1 2 3
| style: font-family: body: '"LXGW WenKai Screen", sans-serif'
|
引用鸿蒙字体
tale/_config.yml1 2 3 4 5
| inject: head: - <link rel="preconnect" href="https://s1.hdslb.com/" /> - <link rel="stylesheet" href="//s1.hdslb.com/bfs/static/jinkela/long/font/regular.css" media="all" onload="this.media='all'" /> - <link rel="stylesheet" href="//s1.hdslb.com/bfs/static/jinkela/long/font/medium.css" media="all" onload="this.media='all'" />
|
tale/_config.stellar.yml1 2 3 4
| style: font-family: body: 'HarmonyOS_Regular'
|
博客基本配置
基本信息
tale/_config.yml1 2 3 4 5 6 7 8 9 10
| title: SFZhang avatar: /customize/images/sfzhang.jpg favicon: /customize/images/sfzhang.jpg subtitle: "SFZhang's blog | blog.sfzhang.cn" description: '一个积极生活的人' keywords: author: SFZhang language: zh-CN timezone: ''
|
显示导航
tale/_config.stellar.yml1 2 3 4 5 6
| sidebar: menu: post: '[btn.blog](/)' wiki: '[btn.wiki](/)' friends: '[友链](/)' about: '[关于](/)'
|
图片放大(fancybox)
其中selector设置为需要放大图片的HTML选择器:
tale/_config.yml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| tag_plugins: image: fancybox: true parse_markdown: true
plugins: fancybox: enable: true css: /customize/css/fancybox.css js: https://fastly.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js selector: .swiper-slide img, .md-text.content p>img, .md-text.content li img , .wl-content img, .image-bg img
|
侧边栏
侧边栏底部按钮
tale/_config.stellar.yml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| footer: social: QQ: icon: '<img src="/customize/svg/contact.svg"/>' url: https://wpa.qq.com/msgrd?v=3&uin=1119716380&site=qq&menu=yes&jumpflag=1 github: icon: '<img src="/customize/svg/github.svg"/>' url: https://github.com/z23654262 unsplash: icon: '<img src="/customize/svg/unsplash.svg"/>' url: https://unsplash.com/@z23654262 train: icon: '<img src="/customize/svg/train.svg"/>' url: https://unsplash.com/@z23654262 Moon: icon: '<img id="ThemeM" src="/customize/svg/moon.svg"/>' url: javaScript:void('永夜'); Sun: icon: '<img id="ThemeL" src="/customize/svg/sun.svg"/>' url: javaScript:void('永昼');
|
小组件
tale/source/_data/widget,yml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| welcome: layout: markdown title: '欢迎来到SFZhang的知识库' content: | 不以物喜,不以己悲 <script src="https://v1.hitokoto.cn/?c=i&encode=js&select=%23hitokoto" defer=""></script> <p>一诗:<span id="hitokoto"></span></p>
yiyan: layout: markdown title: '一诗' content: | <script src="https://v1.hitokoto.cn/?c=i&encode=js&select=%23hitokoto" defer=""></script> <p><span id="hitokoto"></span></p>
timeline: layout: timeline title: 生活碎片 api: https://api.github.com/repos/z23654262/blog-life/issues?per_page=10 user: hide:
ghuser: layout: ghuser username: z23654262 avatar: true menu: true
search_blog: layout: search filter: /blog/ placeholder: 文章搜索
search_all_docs: layout: search filter: /wiki/ placeholder: 文档系统搜索
search_docs: layout: search filter: auto placeholder: 文档内搜索
|
生活碎片
添加页面
添加首页按钮
tale/_config.stellar.yml1 2
| post-index: '生活碎片': /life
|
导航高亮问题
tale/node_modules/hexo-theme-stellar/layout/_partial/main/navbar/list_post.ejs1
| if (full_url_for(page.path) == full_url_for(obj[key]))
|
修改为
tale/node_modules/hexo-theme-stellar/layout/_partial/main/navbar/list_post.ejs1
| if (full_url_for(page.path) == full_url_for(obj[key]) + '/index.html')
|
新建github仓库并添加一条issue
编辑生活碎片页面
tale/source/life/index.md1 2 3 4 5 6 7 8 9 10 11
| --- title: menu_id: post #侧边栏首页高亮 breadcrumb: false # 隐藏面包屑导航 post_list: true # 显示首页导航 date: 2023-10-10 10:34:34 ---
{% note color:orange 分享自己的生活碎片! %}
{% timeline api:https://api.github.com/repos/z23654262/blog-life/issues?direction=asc&per_page=30 %}{% endtimeline %}
|
预览生活碎片页面
添加评论系统giscus
新增github仓库
新增blog-comments仓库并开启Discussions功能并勾选blog-comments/Settings/Features/Discussions即可。
修改配置
tale/_config.stellar.yml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| comments: service: giscus giscus: data-repo: xxx/xxx data-repo-id: data-category: data-category-id: data-mapping: pathname data-strict: 0 data-reactions-enabled: 1 data-emit-metadata: 0 data-input-position: top data-theme: preferred_color_scheme data-lang: zh-CN data-loading: lazy crossorigin: anonymous
|
测试giscus评论系统
博客内评论:
github仓库中Discussions:
添加waline评论系统
waline官方教程
waline程序托管于vercel,数据存储使用learncloud国际版,域名使用waline.sfzhang.top二级域名
learncloud国际版设置
登录 或 注册 LeanCloud 国际版
并进入 控制台
点击左上角创建应用
并起一个你喜欢的名字 (请选择免费的开发版)
进入应用,选择左下角的 设置
> 应用 Key
。你可以看到你的 APP ID
,APP Key
和 Master Key
。请记录它们,以便后续使用。
vercel设置
点击Vercel,跳转至 Vercel 进行 Server 端部署。(如果登录无法访问github,则使用邮箱登录)
跳转后会自动机遇waline仓库进行初始化,只需要填写Vercel仓库名称即可。
点击顶部的 Settings
- Environment Variables
进入环境变量配置页,并配置三个环境变量 LEAN_ID
, LEAN_KEY
和 LEAN_MASTER_KEY
。它们的值分别对应上一步在 LeanCloud 中获得的 APP ID
, APP KEY
, Master Key
。
环境变量配置完成之后点击顶部的 Deployments
点击顶部最新的一次部署右侧的 Redeploy
按钮进行重新部署。该步骤是为了让刚才设置的环境变量生效。
此时会跳转到 Overview
界面开始部署,等待片刻后 STATUS
会变成 Ready
。此时请点击 Visit
,即可跳转到部署好的网站地址,此地址即为你的服务端地址。
Vercel绑定域名
点击顶部的 Settings
- Domains
进入域名配置页,并输入需要绑定的域名
在阿里云处配置域名解析
博客配置文件
tale/_config.staller.yml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| comments: service: waline waline: js: https://unpkg.com/@waline/client@2.14.1/dist/waline.js css: https://unpkg.com/@waline/client@2.14.1/dist/waline.css serverURL: https://domain commentCount: true pageview: false
|