mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2025-05-04 12:57:07 +01:00
Multiple: Fix skill keywords collection glitches.
This commit is contained in:
@ -64,9 +64,11 @@ engine: Underscore
|
||||
<strong>{{ skill.name }}</strong>
|
||||
|
||||
<div class="space-top labels">
|
||||
{% skill.keywords.forEach(function(kw) { %}
|
||||
<span class="label label-keyword">{{ kw }}</span>
|
||||
{% }); %}
|
||||
{% if( skill.keywords && skill.keywords.length ) { %}
|
||||
{% skill.keywords.forEach(function(kw) { %}
|
||||
<span class="label label-keyword">{{ kw }}</span>
|
||||
{% }); %}
|
||||
{% } %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -60,9 +60,11 @@ engine: Underscore
|
||||
<strong>{{ skill.name }}</strong>
|
||||
|
||||
<div class="space-top labels">
|
||||
{% skill.keywords.forEach(function(kw) { %}
|
||||
<span class="label label-keyword">{{ kw }}</span>
|
||||
{% }); %}
|
||||
{% if( skill.keywords && skill.keywords.length ) { %}
|
||||
{% skill.keywords.forEach(function(kw) { %}
|
||||
<span class="label label-keyword">{{ kw }}</span>
|
||||
{% }); %}
|
||||
{% } %}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
Reference in New Issue
Block a user