]> git.mxchange.org Git - friendica.git/blob - view/templates/diaspora_vcard.tpl
Merge remote-tracking branch 'upstream/develop' into 1501-central-item-storage
[friendica.git] / view / templates / diaspora_vcard.tpl
1
2 <div style="display:none;">
3         <dl class='entity_nickname'>
4                 <dt>Nickname</dt>
5                 <dd>            
6                         <a class="nickname url uid" href="{{$diaspora.podloc}}/" rel="me">{{$diaspora.nickname}}</a>
7                 </dd>
8         </dl>
9         <dl class='entity_fn'>
10                 <dt>Full name</dt>
11                 <dd>
12                         <span class='fn'>{{$diaspora.fullname}}</span>
13                 </dd>
14         </dl>
15
16         <dl class='entity_given_name'>
17                 <dt>First name</dt>
18                 <dd>
19                 <span class='given_name'>{{$diaspora.firstname}}</span>
20                 </dd>
21         </dl>
22         <dl class='entity_family_name'>
23                 <dt>Family name</dt>
24                 <dd>
25                 <span class='family_name'>{{$diaspora.lastname}}</span>
26                 </dd>
27         </dl>
28         <dl class="entity_url">
29                 <dt>URL</dt>
30                 <dd>
31                         <a class="url" href="{{$diaspora.podloc}}/" id="pod_location" rel="me">{{$diaspora.podloc}}/</a>
32                 </dd>
33         </dl>
34         <dl class="entity_photo">
35                 <dt>Photo</dt>
36                 <dd>
37                         <img class="photo avatar" height="300" width="300" src="{{$diaspora.photo300}}">
38                 </dd>
39         </dl>
40         <dl class="entity_photo_medium">
41                 <dt>Photo</dt>
42                 <dd> 
43                         <img class="photo avatar" height="100" width="100" src="{{$diaspora.photo100}}">
44                 </dd>
45         </dl>
46         <dl class="entity_photo_small">
47                 <dt>Photo</dt>
48                 <dd>
49                         <img class="photo avatar" height="50" width="50" src="{{$diaspora.photo50}}">
50                 </dd>
51         </dl>
52         <dl class="entity_searchable">
53                 <dt>Searchable</dt>
54                 <dd>
55                         <span class="searchable">{{$diaspora.searchable}}</span>
56                 </dd>
57         </dl>
58 </div>