footer.ejs 241 B

123456
  1. <link rel="stylesheet" href="/stylesheets/tag.css">
  2. <div class="tag-cloud">
  3. <% tags.forEach(item=> { %>
  4. <a href="/<%= lang %>/tag/<%= item.tag %>" class="tag" style="color: <%= item.color %>;"><%= item.tag %></a>
  5. <% }); %>
  6. </div>