docpad plugin-tagging为什么要列出所有标签?

时间:2013-05-06 06:13:54

标签: tags tagging docpad

为什么列出所有tags

I use

<div class="tags">
  <ul>
    <% for tag, item of @getTagCloud(): %>
        <li><a class="tag_item" href="<%= item.url %>" data-tag-count="<%= item.count %>" data-tag-weight="<%= item.weight %>"><%= item.tag %> (<%= item.count %>)</a></li>
    <% end %>
  </ul>
</div>

如何显示特定的网页代码?

1 个答案:

答案 0 :(得分:0)

<div class="tags">
  <ul>
    <% for tag in @document.tags: %>
      <li><a class="tag_item" href="<%= @getTagUrl(tag) %>"><%= tag %></a></li>
    <% end %>
  </ul>
</div>