first template

This commit is contained in:
friendica 2013-07-03 23:08:56 -07:00
parent 6f390330ff
commit ec38f1d5db

View file

@ -170,6 +170,17 @@
</dl>
{{/if}}
{{if $things}}
{{foreach $things as $key => $items}}
<b>{{$profile.fullname.1}} {{$key}}</b>
<ul class="profile-thing-list">
{{foreach $items as $item}}
<li>{{if $item.img}}<img src="{{$item.img}}" width="100" height="100" alt="{{$item.term}}" />{{/if}}
<a href="{{$item.url}}" >{{$item.term}}</a>
</li>
{{/foreach}}
</ul>
{{/foreach}}
{{/if}}