Adding my skills + fixing titles see #1791
parent
54ab2385dc
commit
19b937bb72
@ -1,10 +1,11 @@ |
||||
{% if profiles is not null %} |
||||
<h3>{{"SkillProfiles"|get_lang}}</h3> |
||||
<hr> |
||||
{% if profiles is not null %} |
||||
<div class="page-header"> |
||||
<h3>{{ "SkillProfiles"|get_lang }}</h3> |
||||
</div> |
||||
<ul class="holder"> |
||||
{%for profile in profiles %} |
||||
<li class="bit-box"> |
||||
<a class="load_profile" rel="{{profile.id}}" href="#">{{ profile.name }}</a> |
||||
<a class="load_profile" rel="{{ profile.id }}" href="#">{{ profile.name }}</a> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
|
||||
@ -0,0 +1,13 @@ |
||||
{% if skills is not null %} |
||||
<ul class="nav nav-list"> |
||||
{%for skill in skills %} |
||||
<li> |
||||
<a rel="{{ skill.id}}" href="#"> |
||||
<span class="label label-info"> |
||||
{{ skill.name }} |
||||
</span> |
||||
</a> |
||||
</li> |
||||
{% endfor %} |
||||
</ul> |
||||
{% endif %} |
||||
Loading…
Reference in new issue