aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/profile_vcard.tpl
blob: 8ebc9a311a07488f31b2b6222d7e0ab49f551da3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<div  class="rounded mb-3 vcard-card h-card">
	<div  class="card">
		<div class="row">
			<div class="col-4" style="width: 7rem;">
				{{if $editmenu}}
				<a href="profile_photo" title="{{$change_photo}}">
				{{/if}}
					<div id="profile-photo-wrapper">
						<img class="rounded-start u-photo" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.fullname}}" style="width: 6rem; height:6rem;">
					</div>
				{{if $editmenu}}
				</a>
				{{/if}}
			</div>
			<div class="col-7 m-1 p-0">
				{{if $editmenu.multi}}
				<div class="dropdown float-end">
					<a class="profile-edit-side-link float-end" data-bs-toggle="dropdown" href="#" ><i class="fa fa-pencil" title="{{$editmenu.edit.1}}"></i></a>
					<div class="dropdown-menu dropdown-menu-end" role="menu">
						{{foreach $editmenu.menu.entries as $e}}
						<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}}
				<a class="profile-edit-side-link float-end" href="{{$editmenu.edit.0}}" ><i class="fa fa-pencil" title="{{$editmenu.edit.1}}"></i></a>
				{{/if}}

				<div class="text-truncate">
					<strong class="fn p-name">{{$profile.fullname}}{{if $profile.online}}<i class="fa fa-fw fa-asterisk text-danger ps-2" title="{{$profile.online}}"></i>{{/if}}</strong>
				</div>
				<div class="text-truncate">
					<small class="text-muted p-adr">{{$profile.reddress}}</small>
				</div>
				{{if $connect}}
				<div class="mt-1">
					<a href="{{$connect_url}}" class="btn btn-success btn-sm" rel="nofollow">
						<i class="fa fa-plus"></i> {{$connect}}
					</a>
				</div>
				{{/if}}
			</div>
		</div>
	</div>
	{{if $details}}
	<div class="vcard ps-2 pe-2">
		{{if $profile.pdesc}}
		<div class="pb-3 pt-2">{{$profile.pdesc}}</div>
		{{/if}}
		{{if $location}}
		<dl class="">
			<dt class="location-label">{{$location}}</dt>
			<dd class="adr h-adr">
				{{if $profile.address}}
				<div class="street-address p-street-address">{{$profile.address}}</div>
				{{/if}}
				<div class="city-state-zip">
					<span class="postal-code p-postal-code">{{$profile.postal_code}}</span>
					<span class="locality p-locality">{{$profile.locality}}</span>
				</div>
				{{if $profile.region}}
				<div class="region p-region">{{$profile.region}}</div>
				{{/if}}
				{{if $profile.country_name}}
				<div class="country-name p-country-name">{{$profile.country_name}}</div>
				{{/if}}
			</dd>
		</dl>
		{{/if}}
		{{if $hometown}}
		<dl class="">
			<dt class="hometown-label">{{$hometown}}</dt>
			<dd class="p-hometown">{{$profile.hometown}}</dd>
		</dl>
		{{/if}}
		{{if $gender}}
		<dl class="">
			<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}}
		{{if $marital}}
		<dl class="">
			<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}}
		{{if $homepage}}
		<dl class="pb-2">
			<dt class="homepage-label">{{$homepage}}</dt>
			<dd class="homepage-url u-url">{{$profile.homepage}}</dd>
		</dl>
		{{/if}}
		<div class="hcard-addon"></div>
	</div>
	{{/if}}
</div>
{{if $details}}
{{$chanmenu}}
{{$contact_block}}
{{/if}}