Authored by zhangxiaoru

面包屑

{{#if pathNav}}
<p class="path-nav">
{{#each pathNav}}
{{#if href}}
<a {{#if @last}}class="last"{{/if}} href="{{href}}" title="{{pathTitle}}">{{{name}}}</a>
{{^}}
<span {{#if @last}}class="last"{{/if}} title="{{pathTitle}}">{{{name}}}</span>
{{/if}}
{{#unless @last}}
<span class="iconfont">&frasl;</span>
{{/unless}}
{{/each}}
</p>
{{/if}}
... ...
.path-nav {
font-size: 14px;
padding: 15px 0;
height: 18px;
line-height: 18px;
font-family:"黑体";
a{
color: #666;
text-decoration: none;
}
}
.last {
font-weight: 700;
}
.iconfont {
font-family: iconfont!important;
font-size: 14px;
font-style: normal;
text-decoration: none;
margin-left:6px;
margin-right: 6px;
}
\ No newline at end of file
... ...
@import "base";
@import "components/index";
@import "path-nav";
\ No newline at end of file
... ...