]> git.mxchange.org Git - friendica.git/blob - view/templates/diaspora_vcard.tpl
wrapping up 2019.12
[friendica.git] / view / templates / diaspora_vcard.tpl
1 {{if $diaspora}}
2 <div style="display:none;">
3         <dl class="entity_uid">
4                 <dt>Uid</dt>
5                 <dd>
6                         <span class="uid p-uid">{{$diaspora.guid}}</span>
7                 </dd>
8         </dl>
9         <dl class='entity_nickname'>
10                 <dt>Nickname</dt>
11                 <dd>            
12                         <span class="nickname p-nickname">{{$diaspora.nickname}}</span>
13                 </dd>
14         </dl>
15         <dl class='entity_full_name'>
16                 <dt>Full_name</dt>
17                 <dd>
18                         <span class='fn p-name'>{{$diaspora.fullname}}</span>
19                 </dd>
20         </dl>
21         <dl class="entity_searchable">
22                 <dt>Searchable</dt>
23                 <dd>
24                         <span class="searchable">{{$diaspora.searchable}}</span>
25                 </dd>
26         </dl>
27         <dl class='entity_first_name'>
28                 <dt>First_name</dt>
29                 <dd>
30                 <span class='given_name p-given-name'>{{$diaspora.firstname}}</span>
31                 </dd>
32         </dl>
33         <dl class='entity_family_name'>
34                 <dt>Family_name</dt>
35                 <dd>
36                 <span class='family_name p-family-name'>{{$diaspora.lastname}}</span>
37                 </dd>
38         </dl>
39         <dl class="entity_url">
40                 <dt>Url</dt>
41                 <dd>
42                         <a id="pod_location" href="{{$diaspora.podloc}}/">{{$diaspora.podloc}}/</a>
43                 </dd>
44         </dl>
45         <dl class="entity_photo">
46                 <dt>Photo</dt>
47                 <dd>
48                         <img class="photo u-photo avatar" height="300" width="300" src="{{$diaspora.photo300}}">
49                 </dd>
50         </dl>
51         <dl class="entity_photo_medium">
52                 <dt>Photo_medium</dt>
53                 <dd> 
54                         <img class="photo u-photo avatar" height="100" width="100" src="{{$diaspora.photo100}}">
55                 </dd>
56         </dl>
57         <dl class="entity_photo_small">
58                 <dt>Photo_small</dt>
59                 <dd>
60                         <img class="photo u-photo avatar" height="50" width="50" src="{{$diaspora.photo50}}">
61                 </dd>
62         </dl>
63 </div>
64 {{/if}}