2020-07-18 22:44:17 +02:00
|
|
|
{{#if profiles.length}}
|
|
|
|
<section id="profiles">
|
|
|
|
<h3>Profiles</h3>
|
|
|
|
<div class="grid-list">
|
|
|
|
{{#profiles}}
|
|
|
|
<div>
|
|
|
|
{{#network}}
|
2020-11-01 13:37:00 +01:00
|
|
|
<h4>{{.}}</h4>
|
2020-07-18 22:44:17 +02:00
|
|
|
{{/network}}
|
|
|
|
{{#if username}}
|
|
|
|
{{#if url}}
|
|
|
|
<a href="{{url}}">{{username}}</a>
|
|
|
|
{{else}}
|
|
|
|
{{username}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{#if url}}
|
|
|
|
<a href="{{url}}">{{url}}</a>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/profiles}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{/if}}
|