Adding my skills + fixing titles see #1791
parent
54ab2385dc
commit
19b937bb72
@ -1,10 +1,11 @@ |
|||||||
{% if profiles is not null %} |
{% if profiles is not null %} |
||||||
<h3>{{"SkillProfiles"|get_lang}}</h3> |
<div class="page-header"> |
||||||
<hr> |
<h3>{{ "SkillProfiles"|get_lang }}</h3> |
||||||
|
</div> |
||||||
<ul class="holder"> |
<ul class="holder"> |
||||||
{%for profile in profiles %} |
{%for profile in profiles %} |
||||||
<li class="bit-box"> |
<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> |
</li> |
||||||
{% endfor %} |
{% endfor %} |
||||||
</ul> |
</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