Guest User

Untitled

a guest
Dec 11th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {% for category in entry.mediaType %}
  2. <b>{{ category.title }}</b>,
  3. {% endfor %}
  4.  
  5. {% for category in entry.mediaType %}
  6. <b>{{ category.title }}</b>,
  7. {% if loop.last %}
  8. <b>{{ category.title }}</b>
  9. {% endif %}
  10. {% endfor %}
  11.  
  12. {% for category in entry.mediaType %}
  13. <b>{{ category.title }}</b>
  14. {%- if not loop.last -%}
  15. ,
  16. {% endif %}
  17. {% endfor %}
Add Comment
Please, Sign In to add comment