friendica/view/theme/duepuntozero/templates/profile/vcard.tpl

54 lines
2.0 KiB
Smarty
Raw Normal View History

<div class="vcard h-card">
2013-04-23 13:47:57 +02:00
<div class="fn p-name" dir="auto">{{$profile.name}}</div>
2013-04-23 13:47:57 +02:00
{{if $profile.addr}}<div class="p-addr">{{$profile.addr}}</div>{{/if}}
2013-04-23 13:47:57 +02:00
<div id="profile-photo-wrapper"><img class="photo u-photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
2013-04-23 13:47:57 +02:00
2015-12-01 18:31:08 +01:00
{{if $account_type}}<div class="account-type">{{$account_type}}</div>{{/if}}
2013-04-23 13:47:57 +02: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 13:47:57 +02:00
{{if $location}}
<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>
2013-04-23 13:47:57 +02:00
</dl>
{{/if}}
{{if $profile.about}}<div class="title" dir="auto">{{$profile.about nofilter}}</div>{{/if}}
2020-06-12 21:51:42 +02:00
{{if $profile.upubkey}}<div class="key" style="display:none;">{{$profile.upubkey}}</div>{{/if}}
2013-04-23 13:47:57 +02:00
{{if $homepage}}<dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt><dd class="homepage-url"><a href="{{$profile.homepage}}" class="u-url" rel="me" target="external-link">{{$profile.homepage}}</a></dd></dl>{{/if}}
2013-04-23 13:47:57 +02:00
{{include file="diaspora_vcard.tpl"}}
<div id="profile-vcard-break"></div>
2013-04-23 13:47:57 +02:00
<div id="profile-extra-links">
<ul>
{{if $unfollow_link}}
<li><a id="dfrn-request-link" href="{{$unfollow_link}}">{{$unfollow}}</a></li>
2015-11-26 17:46:38 +01:00
{{/if}}
{{if $follow_link}}
<li><a id="dfrn-request-link" href="{{$follow_link}}">{{$follow}}</a></li>
{{/if}}
{{if $wallmessage_link}}
<li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
2013-04-23 13:47:57 +02:00
{{/if}}
{{if $subscribe_feed_link}}
<li><a id="subscribe-feed-link" href="{{$subscribe_feed_link}}">{{$subscribe_feed}}</a></li>
{{/if}}
2013-04-23 13:47:57 +02:00
</ul>
</div>
</div>
{{$contact_block nofilter}}
2013-04-23 13:47:57 +02:00