10 09/2014

hexo widgets 标签浮动

最后更新: Wed Sep 10 2014 12:37:50 GMT+0800

hexo widgets 默认 类别和标签显示是 block,浪费空间啊。

首先修改模板 themes/light/layout/_widget/category.ejs,加入

<div class=”clearfix”></div>

<% if (site.categories.length){ %>
<div class="widget tag">
  <h3 class="title"><%= __('categories') %></h3>
  <ul class="entry">
  <% site.categories.sort('name').each(function(item){ %>
    <li><a href="<%- config.root %><%- item.path %>"><%= item.name %></a><small><%= item.posts.length %></small></li>
  <% }); %>
  </ul>
  <div class="clearfix"></div>
</div>
<% } %>

修改样式表 themes/light/source/css/_partial/sidebar.styl 修改下面部分

  .tag
    small
      margin-left 6px
      color color-meta
      &:before
        content '('
      &:after
        content ')'
    li 
      float left
      margin-right 10px

别忘了重启,hexo server