diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-23 10:45:10 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-23 10:45:10 +0100 |
commit | 6f79cde0241a6b13fd79756a8e19394d576174a9 (patch) | |
tree | 95bb8a727235a8e22ed81440359fe71c4e09f6c4 /view/theme/diabook/communityhome.tpl | |
parent | d5a6e7b1767ebc337f31745984f1ce0904b77780 (diff) | |
parent | c35b9ec24f1449a691afeeb985a41fbaf07b2af1 (diff) | |
download | volse-hubzilla-6f79cde0241a6b13fd79756a8e19394d576174a9.tar.gz volse-hubzilla-6f79cde0241a6b13fd79756a8e19394d576174a9.tar.bz2 volse-hubzilla-6f79cde0241a6b13fd79756a8e19394d576174a9.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'view/theme/diabook/communityhome.tpl')
-rwxr-xr-x | view/theme/diabook/communityhome.tpl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/view/theme/diabook/communityhome.tpl b/view/theme/diabook/communityhome.tpl new file mode 100755 index 000000000..944aec2dd --- /dev/null +++ b/view/theme/diabook/communityhome.tpl @@ -0,0 +1,43 @@ +{{ 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 }} |