yilia模版左侧背景需要自己设置(很简单哦)
首先打开themes\yilia\layout\layout.ejs
在最上面添加
1 | <% var left_default = '#fff'; %> |
作为默认值,如果你不加图片,就会默认为白色
接着在layout.ejs
文件中找到
1 | <div class="left-col" q-class="show:isShow"></div> |
在其中为它添加内联样式,结果如下:
1 | <div class="left-col" q-class="show:isShow" style="background: <%= theme.style && theme.style.left_ground ? theme.style.left_ground : left_default %>"> |
其中theme.style.left_ground
中的left_ground
就是主题配置文件_config.yml
中style
下的你所要添加的名称。
最后在主题的themes\yilia\_config.yml
中添加
1 | # 头像上面的背景颜色 |
记住添加在style
标签下面哦
url()里面的图片地址自己填写吧~~~