@if (!string.IsNullOrWhiteSpace(Model.footerAddress))
{
@Resource.StaticLabelAddress: @Model.footerAddress
}
@if (!string.IsNullOrWhiteSpace(Model.footerPhone) || !string.IsNullOrWhiteSpace(Model.footerFax))
{
@(string.IsNullOrWhiteSpace(Model.footerPhone) ? "": (Resource.UserPhoneNumber + ": "+ Model.footerPhone))
@(string.IsNullOrWhiteSpace(Model.footerFax) ? "": (Resource.Fax + ": "+ Model.footerFax))
}
@if (!string.IsNullOrWhiteSpace(Model.footerEmail))
{
E-mail: @Model.footerEmail
}
@if (!string.IsNullOrWhiteSpace(Model.footerCopyright))
{
Copyright © @Model.footerCopyright
}