streams/view/tpl/profile_vcard.tpl

84 lines
4.1 KiB
Smarty
Raw Normal View History

<div class="vcard h-card widget">
2016-02-09 02:16:42 +00:00
{{if ! $zcard}}
<div id="profile-photo-wrapper">{{if $editmenu}}<a href="profile_photo" title="{{$change_photo}}">{{/if}}<img class="photo u-photo" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.fullname}}">{{if $editmenu}}</a>{{/if}}</div>
2016-02-09 02:16:42 +00:00
{{/if}}
{{if $connect}}
2023-01-30 20:18:34 +00:00
<div class="connect-btn-wrapper"><a href="{{$connect_url}}" class="btn form-control btn-success btn-sm"><i class="fa fa-plus"></i>&nbsp;{{$connect}}</a></div>
{{/if}}
2021-12-25 22:45:01 +00:00
{{if $profdm}}
2023-01-30 20:18:34 +00:00
<div class="profdm-btn-wrapper"><a href="{{$profdm_url}}" class="btn form-control btn-success btn-sm"><i class="fa fa-envelope"></i>&nbsp;{{$profdm}}</a></div>
2021-12-25 22:45:01 +00:00
{{/if}}
2016-02-09 02:16:42 +00:00
{{if ! $zcard}}
{{if $editmenu.multi}}
2023-01-27 23:02:51 +00:00
<div class="dropdown float-end">
2023-01-28 01:42:11 +00:00
<a class="dropdown-toggle" data-bs-toggle="dropdown" href="#" ><i class="fa fa-pencil" title="{{$editmenu.edit.1}}"></i></a>
<div class="dropdown-menu dropdown-menu-right" role="menu">
{{foreach $editmenu.menu.entries as $e}}
2018-06-01 18:59:28 +00:00
<a href="profiles/{{$e.id}}" class="dropdown-item"><img class="menu-img-1" src='{{$e.photo}}'> {{$e.profile_name}}</a>
{{/foreach}}
<a href="profile_photo" class="dropdown-item">{{$editmenu.menu.chg_photo}}</a>
{{if $editmenu.menu.cr_new}}<a href="profiles/new" id="profile-listing-new-link" class="dropdown-item">{{$editmenu.menu.cr_new}}</a>{{/if}}
</div>
</div>
{{elseif $editmenu}}
2016-04-30 19:59:02 +00:00
<a class="profile-edit-side-link" href="{{$editmenu.edit.0}}" ><i class="fa fa-pencil" title="{{$editmenu.edit.1}}"></i></a>
{{/if}}
2016-02-09 02:16:42 +00:00
{{/if}}
2016-02-09 02:16:42 +00:00
{{if ! $zcard}}
2016-06-22 02:25:14 +00:00
<div class="fn p-name">{{$profile.fullname}}{{if $profile.online}} <i class="fa fa-asterisk online-now" title="{{$profile.online}}"></i>{{/if}}</div>
{{if $reddress}}
<div><span id="profile-reddress" class="reddress">{{$profile.reddress}}</span>
<i class="fa fa-copy fakelink" style="margin-left:1em;" title="{{$copyto}}" onclick="copyReddress(); return false;"></i></div>
<script>function copyReddress() {
$('#profile-reddress').attr("contenteditable", true)
.select()
.on("focus", function() {
document.execCommand('selectAll', false, null)
}).focus()
document.execCommand("Copy");
$('#profile-reddress').removeAttr("contenteditable");
alert("{{$copied}}");
}</script>
{{/if}}
2016-02-09 02:16:42 +00:00
{{/if}}
{{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
{{if $active}}
<dl class="active"><dt class="active-label">{{$active}}</dt><dd>{{$activewhen}}</dd></dl>
{{/if}}
{{if $location}}
<dl class="location"><dt class="location-label">{{$location}}</dt>
2016-06-22 02:25:14 +00:00
<dd class="adr h-adr">
{{if $profile.address}}<div class="street-address p-street-address">{{$profile.address}}</div>{{/if}}
2011-08-31 15:31:44 +00:00
<span class="city-state-zip">
2016-06-22 02:25:14 +00:00
<span class="locality p-locality">{{$profile.locality}}</span>{{if $profile.locality}}, {{/if}}
<span class="region p-region">{{$profile.region}}</span>
<span class="postal-code p-postal-code">{{$profile.postal_code}}</span>
2011-08-31 15:31:44 +00:00
</span>
2016-06-22 02:25:14 +00:00
{{if $profile.country_name}}<span class="country-name p-country-name">{{$profile.country_name}}</span>{{/if}}
2011-09-01 10:37:30 +00:00
</dd>
</dl>
{{/if}}
{{if $gender}}<dl class="mf"><dt class="gender-label">{{$gender}}</dt> <dd class="p-gender">{{if $profile.gender_icon}}<i class="fa fa-{{$profile.gender_icon}}"></i>&nbsp;{{/if}}{{$profile.gender}}</dd></dl>{{/if}}
2020-09-18 22:34:53 +00:00
{{if $pronouns}}<dl class="mf"><dt class="pronouns-label">{{$pronouns}}</dt> <dd class="p-gender">{{if $profile.pronouns_icon}}<i class="fa fa-{{$profile.pronouns_icon}}"></i>&nbsp;{{/if}}{{$profile.pronouns}}</dd></dl>{{/if}}
2016-04-30 19:59:02 +00:00
{{if $marital}}<dl class="marital"><dt class="marital-label"><span class="heart"><i class="fa fa-heart"></i>&nbsp;</span>{{$marital}}</dt><dd class="marital-text">{{$profile.marital}}</dd></dl>{{/if}}
2016-06-22 02:25:14 +00:00
{{if $homepage}}<dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt><dd class="homepage-url u-url">{{$profile.homepage}}</dd></dl>{{/if}}
2011-08-18 06:01:44 +00:00
2023-05-05 22:43:39 +00:00
{{if $identities}}
<dl class="identities"><dt class="identities-label">{{$ident_label}}</dt>
<dd>{{$identities}}</dd>
</dl>
{{/if}}
2017-06-29 00:03:17 +00:00
<div class="hcard-addon"></div>
2011-08-31 15:31:44 +00:00
</div>
2017-06-29 00:03:17 +00:00
<div class="clear"></div>
{{$chanmenu}}
{{$contact_block}}