美化博客,简单的配置文件修改以及高级的玩法
简单修改 修改配置文件 修改hexo根目录下的config.yml,由于我用的模板是icarus,则修改_config.icarus.yml文件
修改内容如下:
1 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 version: 5.1 .0 variant: default logo: head: favicon: /img/favicon.svg manifest: name: short_name: start_url: theme_color: background_color: display: standalone icons: - src: '' sizes: '' type: open_graph: title: type: blog url: image: site_name: author: description: twitter_card: twitter_id: twitter_site: google_plus: fb_admins: fb_app_id: structured_data: title: description: url: author: publisher: publisher_logo: image: meta: - '' rss: navbar: menu: 主页: / 归档: /archives 分类: /categories 标签: /tags search: type: insight index_pages: true comment: type: false shortname: '' donates: sidebar: left: sticky: true right: sticky: false widgets: - position: left type: profile Author: 世慕 author_title: 世慕的个人博客 location: Your location avatar: avatar_rounded: false gravatar: - position: right type: toc index: true collapsed: true depth: 3 plugins: animejs: true back_to_top: true baidu_analytics: tracking_id: bing_webmaster: tracking_id: busuanzi: false cnzz: id: web_id: cookie_consent: type: info theme: edgeless static: false position: bottom-left policyLink: https://www.cookiesandyou.com/ gallery: true google_analytics: tracking_id: hotjar: site_id: katex: false mathjax: false outdated_browser: false progressbar: true statcounter: project: security: twitter_conversion_tracking: pixel_id: providers: cdn: jsdelivr fontcdn: google iconcdn: fontawesome
将不需要的内容注释掉
现在的样式如下图
文章在首页折叠 在文档中加上 <!-- more -->
即可
将方形头像改为圆形 在 /hexo-theme-icarus/widget/profile.jsx
文件中做以下修改
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <div class ="card widget" data-type="profile" > <div class ="card-content" > <nav class ="level" > <div class ="level-item has-text-centered flex-shrink-1" > <div > <figure class ="image is-128x128 mx-auto mb-2" > - <img class ={ 'avatar ' + (avatarRounded ? ' is-rounded ' : '')} src ={avatar} alt ={author} /> + <img style ="border-radius:100%" class ={ 'avatar ' + (avatarRounded ? ' is-rounded ' : '')} src ={avatar} alt ={author} /> </figure > {author ? <p class ="title is-size-4 is-block" style ={{ 'line-height ': 'inherit '}}> {author}</p > : null} {authorTitle ? <p class ="is-size-6 is-block" > {authorTitle}</p > : null} {location ? <p class ="is-size-6 is-flex justify-content-center" > <i class ="fas fa-map-marker-alt mr-1" > </i > <span > {location}</span > </p > : null} </div > </div > </nav >
进阶修改 在修改yml配置文件之后,如果需要其他操作则需要修改代码
我是使用的官方的安装方法,所以 icarus 的源码在 \node_modules\hexo-theme-icarus
下
在上面的配置文件中吧toc设置位了true,并且在每篇文章的md文档的最上方添加了这样一处代码块
1 2 3 4 5 6 7 --- title: test toc: true categories: - testtags: [test] ---
在此处toc设为了true后,博客中的文章则会出现目录,我现在想让目录悬浮,让它跟着我的页面一起走则需要去源码中进行修改
在修改之前需要先自行添加一个文件
https://github.com/ppoffice/hexo-component-inferno/blob/master/src/view/widget/toc.jsx
再行开始有 -
号则是需要去的代码(注释也是一样的效果), +
则为添加
将目录修改成悬浮 将这个文件复制到 \node_modules\hexo-theme-icarus\layout\widget
里,做如下操作
1 2 3 4 5 6 const keys = Object .keys (toc) .filter ((key ) => !['id' , 'index' , 'text' ].includes (key)) - .sort ((a, b ) => a - b);
将目录的自动生成序号去掉 在刚刚添加的文件里注释掉下面这行代码
1 2 3 4 5 6 7 8 9 10 11 if ('id' in toc && 'index' in toc && 'text' in toc) { result = ( <li > <a class ="is-flex is-mobile" href ={ '#' + toc.id }> - {/* {showIndex && <span class ="mr-2" > {toc.index}</span > } */} <span > {unescapeHTML(toc.text)}</span > </a > {result} </li > ); }
导航栏悬浮与左边的组件悬浮
现在的样式:
修改主页与文章页面固定三栏布局 修改固定三栏布局
修改 /hexo-theme-icarus/layout/layout.jsx
代码
1 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 module .exports = class extends Component { render ( ) { const { site, config, page, helper, body } = this .props ; const language = page.lang || page.language || config.language ; const columnCount = Widgets .getColumnCount (config.widgets , config, page); return <html lang ={language ? language.substr (0 , 2 ) : ''}> <Head site ={site} config ={config} helper ={helper} page ={page} /> - <body class ={ `is- ${columnCount }-column `}> + {/*强制显示三栏*/} + <body class ={ `is-3-column `}> <Navbar config ={config} helper ={helper} page ={page} /> <section class ="section" > <div class ="container" > <div class ="columns" > <div class ={classname({ column: true , 'order-2 ': true , 'column-main ': true , 'is-12 ': columnCount === 1, - 'is-8-tablet is-8-desktop is-8-widescreen ': columnCount === 2, + // 新增 + 'is-8-tablet is-8-desktop is-9-widescreen ': columnCount === 2, 'is-8-tablet is-8-desktop is-6-widescreen ': columnCount === 3 })} dangerouslySetInnerHTML ={{ __html: body }}> </div > <Widgets site ={site} config ={config} helper ={helper} page ={page} position ={ 'left '} /> <Widgets site ={site} config ={config} helper ={helper} page ={page} position ={ 'right '} /> </div > </div > </section > <Footer config ={config} helper ={helper} /> <Scripts site ={site} config ={config} helper ={helper} page ={page} /> <Search config ={config} helper ={helper} /> </body > </html > ; } };
修改 /hexo-theme-icarus/layout/common/widgets.jsx
代码
1 2 3 4 5 6 7 8 9 10 function 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 '' ; }
文章页面自定义布局 在文章页widget只显示toc,只需要单独新建一个 _config.post.yml
文件并单独添加widget配置即可,配置如下:
1 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 sidebar: right: sticky: true widgets: - position: right type: toc index: true collapsed: true depth: 3 - position: right type: recent_posts - position: right type: categories
修改a链接变色过渡 在 /hexo-theme-icarus/source/css/style.styl
文件中添加 :houver
属性
1 2 3 4 5 a :hover transition : color 0.5s a transition: color 0.5s
参考资料 Icarus 主题双列显示和目录单独浮动等
设置两套widget,post页面单独设置
能否实现文章目录单独浮动和子目录折叠 #673
是否考虑增加固定导航栏navbar的配置 #1038