@Hydrangea 感觉可以给首页的链接样式再设置一个class 。
首页的布局在layouts/_default/list.html 的里面,注意到这里有一个 <a class="" href="{{ .Permalink }}">{{ if .Title }} {{ .Title }} {{ else }} Untitled {{ end }}</a>
没有设置样式,可以设置class为homepage即 <a class="homepage" href="{{ .Permalink }}">{{ if .Title }} {{ .Title }} {{ else }} Untitled {{ end }}</a>
然后在style.scss里面加上
.homepage{
在这里改
如取消下划线:
text-decoration:none;
}
@Hydrangea 好复杂哦!