-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathod-mapv-item.tpl.php
More file actions
executable file
·28 lines (28 loc) · 1021 Bytes
/
od-mapv-item.tpl.php
File metadata and controls
executable file
·28 lines (28 loc) · 1021 Bytes
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
<div class="result-item">
<div class="item-rows">
<div class="column column-1">
<div class="field-name"><?php print $name['prefix'] ?><?php print $name['value'] ?></div>
</div>
<div class="column column-2">
<div class="field-province"><?php print $province['prefix'] ?><?php print $province['value'] ?></div>
<div class="field-contact">
<?php if ($contact['value']): ?>
<?php print $contact['prefix'] ?>
<?php print $contact['value'] ?>
<?php endif; ?>
</div>
</div>
<div class="column column-3">
<div class="field-more arrow-right"></div>
</div>
</div>
<div class="more-detail">
<?php foreach ($details as $key => $detail): ?>
<div class="detail-<?php print $key; ?> detail">
<?php if ($detail['prefix']) print $detail['prefix']; ?>
<div class="content"><?php print $detail['value']; ?></div>
<?php if ($detail['suffix']) print $detail['suffix']; ?>
</div>
<?php endforeach; ?>
</div>
</div>