Welcome to mirror list, hosted at ThFree Co, Russian Federation.

profile_sidebar_tpl.jst.hbs « templates « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69cc76d835d96aea89b839a45b8e8f7c17098566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

<div id="profile_photo" class="profile_photo">
  {{#linkToPerson this}}
    {{{personImage this "large"}}}
  {{/linkToPerson}}
</div>

{{#if show_profile_info}}
  <ul id="profile_information">
    {{#with profile}}
      {{#if bio}}
        <li>
          <h4>{{t 'profile.bio'}}</h4>
          <div class="{{txtDirClass bio}}">{{fmtText bio}}</div>
        </li>
      {{/if}}
      {{#if location}}
        <li>
          <h4>{{t 'profile.location'}}</h4>
          <div class="{{txtDirClass location}}">{{fmtText location}}</div>
        </li>
      {{/if}}
      {{#if gender}}
        <li>
          <h4>{{t 'profile.gender'}}</h4>
          {{gender}}
        </li>
      {{/if}}
      {{#if birthday}}
        <li>
          <h4>{{t 'profile.born'}}</h4>
          {{birthday}}
        </li>
      {{/if}}
    {{/with}}
  </ul>
{{/if}}