footer.ejs 227 B

1234567
  1. <div class="tag-cloud">
  2. <% tags.forEach(item=> { %>
  3. <a href="/<%= lang %>/tag/<%= item.tag %>" class="tag" style="color: <%= item.color %>;">
  4. <%= item.title[lang] %>
  5. </a>
  6. <% }); %>
  7. </div>