profile_item.tpl 388 B

123456789101112
  1. {% if profiles is not null %}
  2. <div class="page-header">
  3. <h3>{{ "SkillProfiles"|get_lang }}</h3>
  4. </div>
  5. <ul class="holder">
  6. {%for profile in profiles %}
  7. <li class="bit-box">
  8. <a class="load_profile" rel="{{ profile.id }}" href="#">{{ profile.name }}</a>
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. {% endif %}