Add another row if more than 5 social profiles. Same for 10

This commit is contained in:
BackIsBachus 2016-05-16 16:42:11 +02:00
parent 3d7afe86ba
commit 1c06064a29
1 changed files with 9 additions and 0 deletions

View File

@ -19,7 +19,16 @@
<div class="social-links text-center">
<div>
{{#each r.social}}
{{#compare @key 5}}
</div>
<div>
{{/compare}}
{{#compare @key 10}}
</div>
<div>
{{/compare}}
<a href="{{url}}" target="_blank" data-toggle="tooltip" title="{{user}} on {{network}}" class="fs-2x social-link"><i class="link-{{toLower network}} fa fa-{{toLower network}}"></i></a>
{{/each}}
</div>
</div>