source: RedSur/app/assets/templates/profile_sidebar_tpl.jst.hbs @ 40f563a

modelo_minuta
Last change on this file since 40f563a was 1b91e02, checked in by aosorio <aosorio@…>, 8 years ago

Version para desarrollo local

  • Property mode set to 100755
File size: 918 bytes
Line 
1
2
3<div id="profile_photo" class="profile_photo">
4  {{#linkToPerson this}}
5    {{{personImage this "large"}}}
6  {{/linkToPerson}}
7</div>
8
9{{#if is_group}}
10  <div id="selected_aspect_contacts">
11  </div>
12{{/if}}
13
14{{#if show_profile_info}}
15  <ul id="profile_information">
16    {{#with profile}}
17      {{#if bio}}
18        <li>
19          <h4>{{t 'profile.bio'}}</h4>
20          <div class="{{txtDirClass bio}}">{{fmtText bio}}</div>
21        </li>
22      {{/if}}
23      {{#if location}}
24        <li>
25          <h4>{{t 'profile.location'}}</h4>
26          <div class="{{txtDirClass location}}">{{fmtText location}}</div>
27        </li>
28      {{/if}}
29      {{#if gender}}
30        <li>
31          <h4>{{t 'profile.gender'}}</h4>
32          {{gender}}
33        </li>
34      {{/if}}
35      {{#if birthday}}
36        <li>
37          <h4>{{t 'profile.born'}}</h4>
38          {{birthday}}
39        </li>
40      {{/if}}
41    {{/with}}
42  </ul>
43{{/if}}
Note: See TracBrowser for help on using the repository browser.