Guest User

Untitled

a guest
Apr 26th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <ul>
  2. {% for entry in craft.entries.section('fellows').limit(null) %}
  3.  
  4. {% set tags = craft.tags.relatedTo(entry).limit(1).find() %}
  5. {% set active = entry.fellowStatus %}
  6.  
  7. {% if entry.fellowStatus == 0 %}
  8.  
  9. {% for tag in tags %}
  10. <li>
  11. <a href="{{ tag }}">{{ tag.title }}</a>
  12. </li>
  13. {% endfor %}
  14.  
  15. {% endif %}
  16.  
  17. {% endfor %}
  18. </ul>
Add Comment
Please, Sign In to add comment