diff options
author | friendica <info@friendica.com> | 2013-12-28 17:04:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-28 17:04:23 -0800 |
commit | 22f614feba8502a5fd040cc34dab2baa3087da3c (patch) | |
tree | 65dc8bd6ed84f2fb7a745c85ddf299aae234254f /view/tpl/list_things.tpl | |
parent | aacd3164fa9efdb4dc3f835f67a61dfc14dc8d11 (diff) | |
download | volse-hubzilla-22f614feba8502a5fd040cc34dab2baa3087da3c.tar.gz volse-hubzilla-22f614feba8502a5fd040cc34dab2baa3087da3c.tar.bz2 volse-hubzilla-22f614feba8502a5fd040cc34dab2baa3087da3c.zip |
a bit more backend work on things
Diffstat (limited to 'view/tpl/list_things.tpl')
-rw-r--r-- | view/tpl/list_things.tpl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/view/tpl/list_things.tpl b/view/tpl/list_things.tpl new file mode 100644 index 000000000..fb8935d82 --- /dev/null +++ b/view/tpl/list_things.tpl @@ -0,0 +1,13 @@ +{{if $things}} +{{foreach $things as $key => $items}} +<b>{{$items.profile}} {{$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> +<div class="clear"></div> +{{/foreach}} +{{/if}} |