40 lines
1 KiB
Text
40 lines
1 KiB
Text
@model List<Address>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-lg-2 col-md-6">
|
|
<h5 class="text-white mb-3">Address</h5>
|
|
@foreach (var item in Model.Take(1))
|
|
{
|
|
<p class="line-spacing text-white text-muted">
|
|
|
|
<strong>Street:</strong> @item.Street <br>
|
|
<strong>City:</strong> @item.City <br>
|
|
<strong>State:</strong> @item.State <br>
|
|
<strong>Postal Code:</strong> @item.PostalCode <br>
|
|
<strong>Country:</strong> @item.Country <br>
|
|
|
|
|
|
</p>
|
|
}
|
|
</div>
|
|
<div class="col-lg-2 col-md-6">
|
|
<h5 class="text-white mb-3">Contact</h5>
|
|
@foreach (var item in Model.Take(1))
|
|
{
|
|
<p class="line-spacing text-white text-muted">
|
|
|
|
<strong>Email:</strong> <a id="LinkColor" href="mailto:@item.Email">@item.Email</a> <br>
|
|
<strong>Mobile:</strong> <a id="LinkColor" href="tel:@item.Mobile">@item.Mobile</a> <br>
|
|
|
|
<strong>CVR:</strong> @item.CVR <br>
|
|
|
|
</p>
|
|
}
|
|
</div>
|
|
|
|
|
|
|
|
|