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