diff options
author | friendica <info@friendica.com> | 2014-05-15 19:54:37 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-15 19:54:37 -0700 |
commit | 077b97eac46989cfc7aadc14f3c4974fb31473b3 (patch) | |
tree | 4258c4f67d84c618558f821dcbe6e87e12600c8c /view/tpl/apps.tpl | |
parent | 99d97170deb1d2b04e649b8f7a3170145ff2a19d (diff) | |
download | volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.tar.gz volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.tar.bz2 volse-hubzilla-077b97eac46989cfc7aadc14f3c4974fb31473b3.zip |
the app menu takes form
Diffstat (limited to 'view/tpl/apps.tpl')
-rwxr-xr-x | view/tpl/apps.tpl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/view/tpl/apps.tpl b/view/tpl/apps.tpl index 335e0ca97..4a5ddfbcb 100755 --- a/view/tpl/apps.tpl +++ b/view/tpl/apps.tpl @@ -1,7 +1,11 @@ <h3>{{$title}}</h3> -<ul> - {{foreach $apps as $ap}} - <li>{{$ap}}</li> - {{/foreach}} -</ul> +{{foreach $apps as $ap}} +<div class="app-container"> +<a href="{{$ap.url}}"><img src="{{$ap.photo}}" width="80" height="80" /> +<div class="app-name">{{$ap.name}}</div> +</a> +</div> +{{/foreach}} +<div class="clear"></div> + |