Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <ul>
  2. {% for contributor in episode.contributors %}
  3. <li>
  4. {% for service in contributor.services({type: "website"}) %}
  5. <a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}">
  6. {% endfor %}
  7. <strong>{{ contributor.name }}</strong>
  8. {% for service in contributor.services({type: "website"}) %}
  9. </a>
  10. {% endfor %}
  11. , {{ contributor.comment}}
  12. </li>
  13. {% endfor %}
  14. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement