New Journey
時隔多年,寫網誌的衝動又再度浮現,不知道這次能持續多久
現在 HEXO 也改進了不少,好用很多,順便紀錄一下一些設定
Packages
1 | # git deploy |
Theme
特別提一下 theme: hexo-theme-icarus
原本是指用 Next 黑白簡約的風格,不過這次看到 icarus 整個被燒到
附帶的功能非常齊全,於是就換一下風格,重新出發!!!
Setting
Post Template
Permalink
of post template inscaffolds/
要在_config.yml
增加變數urlname
,再去scaffold/_post.md
增加 tagurlname
即可
Article
Readmore
文章不要展開至#more
位置,而是開頭- Path:
themes\icarus\layout\common\article.jsx
- 修改
- from:
{url_for(page.link || page.path)}#more
- to:
{url_for(page.link || page.path)}
- from:
- Path:
Post 內改為
2 columns
- Page 預設為
3 columns
,Flexible Theme Configuration 作者有提供此功能,只要新增_config.post.md
,然後在裡面把想要的 widgets 放置左側即可
- Page 預設為
頁面寬度
這裡會需要修改兩個地方themes\icarus\layout\common\article.jsx
將 column_size 由 4 -> 31
2
3
4
5
6
7
8
9
10function getColumnSizeClass(columnCount) {
switch (columnCount) {
case 2:
//return 'is-4-tablet is-4-desktop is-4-widescreen';
return 'is-4-tablet is-4-desktop is-3-widescreen';
case 3:
return 'is-4-tablet is-4-desktop is-3-widescreen';
}
return '';
}themes\icarus\include\style\responsive.styl
base.styl
有設定$fullhd ?= 1472px
,剩下就把responsive.styl
的設定都改成 fullhd size
NOTE: 2 欄及 3 欄都要修改,否則切換頁面會對不齊1
2
3
4
5
6
7
8+fullhd()
.is-3-column .container
max-width: $fullhd - 0 * $gap
width: $fullhd - 0 * $gap
.is-2-column .container
max-width: $fullhd - 0 * $gap
width: $fullhd - 0 * $gap
toc 顯示
需要在front-matter
中添加1
toc: true
[TODO] toc 預設展開
- 主題不支援預設展開 toc,而是隨著定位展開 sub-header。而且預設 sidebar 是不連動滑動,所以在滑動時,會造成文章往下滑,就看不到上方展開的 toc
- 目前的解決方案是把 toc 移到 profile widget 上方,並調整 sidebar 為 sticky mode
- [許願] 希望之後能夠支援預設展開 toc (ps: 我不會前端阿QQ)
Image
圖片置中
theme 預設是靠左,在themes\icarus\include\style\article.styl
可以增加文章內的圖片 margin 屬性參考: 文章图片居中
1
2
3
4
5
6
7
8
9
10&.article
...
.content
...
a
img
margin: auto
display: block
圖片封面與縮圖
在front-matter
內加入 tag:cover
與thumbnail
- 參考 icarus 主題配置
- 支援
local image
或url
1
2cover: /gallery/covers/cover.jpg
thumbnail: /gallery/thumbnails/thumbnail.jpg調整文章內外 cover image 顯示範圍
- 針對 image class 去做限制高度,Home 下的調窄一些
Home
(.fill
):height: 287
Page
(.center
):height: 487
- img
- 使用
cover
模式 - 置中
- 高度與 imagebox 相同
- 使用
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16.image
.center
width: 100% !important
height: 487px !important
object-fit: cover
object-position: 50% 50%
.avatar
height: 100%
object-fit: cover
.fill
object-fit: cover
width: 100% !important
height: 287px !important
object-position: 50% 50%- 針對 image class 去做限制高度,Home 下的調窄一些
圖片放置位置
theme/source
底下找個資料夾放就好,呼叫以相對路徑於theme/source
- Path:
theme/source/img
或theme/source/gallery
- Path:
front-matter template
1 |
|
Others
- Sitemap
- template: hexo-generator-sitemap/sitemap.xml
- Comment
- disque