diff options
author | tommy tomson <thomas.bierey@gmx.de> | 2012-03-23 02:36:34 +0100 |
---|---|---|
committer | tommy tomson <thomas.bierey@gmx.de> | 2012-03-23 02:36:34 +0100 |
commit | bf4dd8ad1701c79a3de097b2792fa8ae2fc673b4 (patch) | |
tree | d41c4e7a99583c808d226c126caf44800e89e0c3 /view/theme/diabook/communityhome.tpl | |
parent | 528d795fb68a8ae53cb7b9ad8479aeaa2b1f975f (diff) | |
download | volse-hubzilla-bf4dd8ad1701c79a3de097b2792fa8ae2fc673b4.tar.gz volse-hubzilla-bf4dd8ad1701c79a3de097b2792fa8ae2fc673b4.tar.bz2 volse-hubzilla-bf4dd8ad1701c79a3de097b2792fa8ae2fc673b4.zip |
add right_aside to theme diabook
Diffstat (limited to 'view/theme/diabook/communityhome.tpl')
-rwxr-xr-x | view/theme/diabook/communityhome.tpl | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/view/theme/diabook/communityhome.tpl b/view/theme/diabook/communityhome.tpl new file mode 100755 index 000000000..876276ca8 --- /dev/null +++ b/view/theme/diabook/communityhome.tpl @@ -0,0 +1,42 @@ +{{ if $lastusers_title }} +<h3 style="margin-top:0px;">Help or #Newhere?</h3> +<a href="https://helpers.pyxis.uberspace.de/profile/helpers" style="margin-left: 10px; color:#000;" title="Friendica Support" target="blank">Friendica Support</a><br> +<a href="https://letstalk.pyxis.uberspace.de/profile/letstalk" style="margin-left: 10px; color:#000;" title="Let's talk" target="blank">Let's talk</a><br> +<a href="http://kakste.com/profile/newhere" title="#NewHere" style="margin-left: 10px; color:#000;" target="blank">NewHere</a> +{{ endif }} +{{ if $lastusers_title }} +<h3>$lastusers_title</h3> +<div class='items-wrapper'> +{{ for $lastusers_items as $i }} + $i +{{ endfor }} +</div> +{{ endif }} + +{{ if $activeusers_title }} +<h3>$activeusers_title</h3> +<div class='items-wrapper'> +{{ for $activeusers_items as $i }} + $i +{{ endfor }} +</div> +{{ endif }} + +{{ if $photos_title }} +<h3>$photos_title</h3> +<div class='items-wrapper'> +{{ for $photos_items as $i }} + $i +{{ endfor }} +</div> +{{ endif }} + + +{{ if $like_title }} +<h3>$like_title</h3> +<ul id='likes'> +{{ for $like_items as $i }} + <li>$i</li> +{{ endfor }} +</ul> +{{ endif }} |