diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2012-02-23 02:52:04 -0800 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2012-02-23 02:52:04 -0800 |
commit | d5adb67ef480bd24bcca4d384eba72e51ae27446 (patch) | |
tree | 6e7daff5fffd3adf40b30db3b66221543c3d1ec4 /view/theme/testbubble/contact_template.tpl | |
parent | 85d09f48d0bdddd43c8dd13c618cc714a679d141 (diff) | |
parent | cbc60d525e9140169c3b2d03998c53907b2fa3a7 (diff) | |
download | volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.tar.gz volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.tar.bz2 volse-hubzilla-d5adb67ef480bd24bcca4d384eba72e51ae27446.zip |
Merge pull request #46 from fabrixxm/master
more work on quattro theme and less html in php
Diffstat (limited to 'view/theme/testbubble/contact_template.tpl')
-rwxr-xr-x | view/theme/testbubble/contact_template.tpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/view/theme/testbubble/contact_template.tpl b/view/theme/testbubble/contact_template.tpl new file mode 100755 index 000000000..48930b48a --- /dev/null +++ b/view/theme/testbubble/contact_template.tpl @@ -0,0 +1,25 @@ + +<div class="contact-entry-wrapper" id="contact-entry-wrapper-$contact.id" > + <div class="contact-entry-photo-wrapper" > + <div class="contact-entry-photo mframe" id="contact-entry-photo-$contact.id" + onmouseover="if (typeof t$contact.id != 'undefined') clearTimeout(t$contact.id); openMenu('contact-photo-menu-button-$contact.id')" + onmouseout="t$contact.id=setTimeout('closeMenu(\'contact-photo-menu-button-$contact.id\'); closeMenu(\'contact-photo-menu-$contact.id\');',200)" > + + <a href="$contact.url" title="$contact.img_hover" /><img src="$contact.thumb" $contact.sparkle alt="$contact.name" /></a> + + {{ if $contact.photo_menu }} + <span onclick="openClose('contact-photo-menu-$contact.id');" class="fakelink contact-photo-menu-button" id="contact-photo-menu-button-$contact.id">menu</span> + <div class="contact-photo-menu" id="contact-photo-menu-$contact.id"> + <ul> + $contact.photo_menu + </ul> + </div> + {{ endif }} + </div> + + </div> + <div class="contact-entry-photo-end" ></div> + <div class="contact-entry-name" id="contact-entry-name-$contact.id" >$contact.name</div> + + <div class="contact-entry-end" ></div> +</div> |