改主題(修改顶部图高度)

修改顶部图

首先用pycharm打开 主题文件

然后 Edit - Find - Find in file

image-20221028123144680

找到 top_img_height

image-20221028123422792

这几个文件中用到了 这个参数

我们想要改 文章页,就改 post.styl 里的数

改图片是 post.pug:

1
2
3
[6] - var bg_img = top_img !== true ? `background-image: url(${top_img})` : ''
[7] - var flag = top_img === true ? 'no-bg' : ''
[8] div#top-container(style=bg_img class=flag)

url(${top_img})

1
- var bg_img = top_img !== true ? `background-image: url(${top_img})` : ''