2016-06-21 14:23:43 +00:00
|
|
|
<div class="vcard h-card">
|
2013-04-23 11:47:57 +00:00
|
|
|
|
|
|
|
<div class="tool">
|
2021-05-01 19:13:39 +00:00
|
|
|
<div class="fn p-name" dir="auto">{{$profile.name}}</div>
|
2013-04-23 11:47:57 +00:00
|
|
|
{{if $profile.edit}}
|
|
|
|
<div class="action">
|
2018-12-14 03:28:12 +00:00
|
|
|
<a class="icon s16 edit ttright" href="#" rel="#profiles-menu" title="{{$profile.edit.3}}"><span>{{$profile.edit.1}}</span></a>
|
2013-04-23 11:47:57 +00:00
|
|
|
<ul id="profiles-menu" class="menu-popup">
|
2015-11-26 16:46:38 +00:00
|
|
|
<li>
|
|
|
|
<a href="{{$profile.edit.0}}">{{$profile.edit.1}}</a>
|
|
|
|
</li>
|
2021-05-19 21:47:15 +00:00
|
|
|
<li><a href="settings/profile/photo">{{$profile.menu.chg_photo}}</a></li>
|
2013-04-23 11:47:57 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
2018-12-14 03:28:12 +00:00
|
|
|
{{if $profile.addr}}<div class="p-addr">{{$profile.addr}}</div>{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
2022-02-01 19:12:33 +00:00
|
|
|
<div id="profile-photo-wrapper"><img class="photo u-photo" width="175" height="175" src="{{$profile.photo}}" alt="{{$profile.name}}" /></div>
|
2013-04-23 11:47:57 +00:00
|
|
|
|
2015-12-01 17:31:08 +00:00
|
|
|
{{if $account_type}}<div class="account-type">{{$account_type}}</div>{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
2018-12-26 16:03:41 +00:00
|
|
|
{{if $profile.network_link}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$profile.network_link nofilter}}</dd></dl>{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
|
|
|
{{if $location}}
|
2021-05-01 19:13:39 +00:00
|
|
|
<dl class="location" dir="auto">
|
|
|
|
<dt class="location-label">{{$location}}</dt>
|
|
|
|
<dd class="adr h-adr">
|
|
|
|
{{if $profile.address}}<p class="street-address p-street-address">{{$profile.address nofilter}}</p>{{/if}}
|
|
|
|
{{if $profile.location}}<p class="p-location">{{$profile.location}}</p>{{/if}}
|
|
|
|
</dd>
|
|
|
|
</dl>
|
2013-04-23 11:47:57 +00:00
|
|
|
{{/if}}
|
|
|
|
|
2021-05-01 19:13:39 +00:00
|
|
|
{{if $about}}<div class="title" dir="auto">{{$profile.about nofilter}}</div>{{/if}}
|
2020-03-11 12:19:28 +00:00
|
|
|
|
2021-05-01 19:13:39 +00:00
|
|
|
{{if $profile.xmpp}}
|
|
|
|
<dl class="xmpp">
|
|
|
|
<dt class="xmpp-label">{{$xmpp}}</dt>
|
|
|
|
<dd class="xmpp-data">{{$profile.xmpp}}</dd>
|
|
|
|
</dl>
|
|
|
|
{{/if}}
|
2016-09-25 15:28:00 +00:00
|
|
|
|
2021-08-09 01:39:09 +00:00
|
|
|
{{if $profile.matrix}}
|
|
|
|
<dl class="matrix">
|
|
|
|
<dt class="matrix-label">{{$matrix}}</dt>
|
|
|
|
<dd class="matrix-data">{{$profile.matrix}}</dd>
|
|
|
|
</dl>
|
|
|
|
{{/if}}
|
|
|
|
|
2020-06-12 19:51:42 +00:00
|
|
|
{{if $profile.upubkey}}<div class="key" style="display:none;">{{$profile.upubkey}}</div>{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
2015-11-26 16:46:38 +00:00
|
|
|
{{if $homepage}}
|
|
|
|
<dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt>
|
2016-06-21 14:23:43 +00:00
|
|
|
<dd class="homepage-url"><a href="{{$profile.homepage}}" class="u-url" rel="me" target="external-link">{{$profile.homepage}}</a></dd>
|
2015-11-26 16:46:38 +00:00
|
|
|
</dl>
|
|
|
|
{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
|
|
|
{{include file="diaspora_vcard.tpl"}}
|
2019-06-11 01:33:25 +00:00
|
|
|
|
2013-04-23 11:47:57 +00:00
|
|
|
<div id="profile-extra-links">
|
|
|
|
<ul>
|
2019-06-11 01:33:25 +00:00
|
|
|
{{if $unfollow_link}}
|
|
|
|
<li><a id="dfrn-request-link" href="{{$unfollow_link}}">{{$unfollow}}</a></li>
|
|
|
|
{{/if}}
|
|
|
|
{{if $follow_link}}
|
|
|
|
<li><a id="dfrn-request-link" href="{{$follow_link}}">{{$follow}}</a></li>
|
2015-11-26 16:46:38 +00:00
|
|
|
{{/if}}
|
2019-06-11 01:33:25 +00:00
|
|
|
{{if $wallmessage_link}}
|
2016-05-30 05:18:25 +00:00
|
|
|
<li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
|
2013-04-23 11:47:57 +00:00
|
|
|
{{/if}}
|
2019-06-11 01:33:25 +00:00
|
|
|
{{if $subscribe_feed_link}}
|
|
|
|
<li><a id="subscribe-feed-link" href="{{$subscribe_feed_link}}">{{$subscribe_feed}}</a></li>
|
2015-11-28 17:11:34 +00:00
|
|
|
{{/if}}
|
2013-04-23 11:47:57 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-12-14 03:35:51 +00:00
|
|
|
{{$contact_block nofilter}}
|
2013-04-23 11:47:57 +00:00
|
|
|
|
|
|
|
|