diff options
author | friendica <info@friendica.com> | 2012-12-19 19:51:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-19 19:51:52 -0800 |
commit | ad20e1f617c7e26585153b587eb9a85fc958794b (patch) | |
tree | 34dea42657f13affc9721a443f2582662f1080f9 /view/tpl/direntry.tpl | |
parent | 2f48c31082179d8ff29952e8fe983c99ab0ff5f3 (diff) | |
download | volse-hubzilla-ad20e1f617c7e26585153b587eb9a85fc958794b.tar.gz volse-hubzilla-ad20e1f617c7e26585153b587eb9a85fc958794b.tar.bz2 volse-hubzilla-ad20e1f617c7e26585153b587eb9a85fc958794b.zip |
directory page still needs a lot of work, look up locally if local master or standalone, need to put some basic profile info in discovery page and direct to local directory master
Diffstat (limited to 'view/tpl/direntry.tpl')
-rw-r--r-- | view/tpl/direntry.tpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/tpl/direntry.tpl b/view/tpl/direntry.tpl new file mode 100644 index 000000000..e860da41c --- /dev/null +++ b/view/tpl/direntry.tpl @@ -0,0 +1,11 @@ + +<div class="directory-item lframe" id="directory-item-$entry.id" > + <div class="contact-photo-wrapper" id="directory-photo-wrapper-$entry.id" > + <div class="contact-photo" id="directory-photo-$entry.id" > + <a href="$entry.profile_link" class="directory-profile-link" id="directory-profile-link-$entry.id" ><img class="directory-photo-img" src="$entry.photo" alt="$entry.alttext" title="$entry.alttext" /></a> + </div> + </div> + + <div class="contact-name" id="directory-name-$entry.id">$entry.name</div> + <div class="contact-details">$entry.details</div> +</div> |