19 lines
591 B
Text
Executable file
19 lines
591 B
Text
Executable file
@using Microsoft.IdentityModel.Protocols.Configuration
|
|
@model SiteSettings
|
|
@{
|
|
ViewBag.Title = "Contact";
|
|
if (Model.Owner==null)
|
|
throw new InvalidConfigurationException("no owner");
|
|
}
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
<h3>@ViewBag.Message</h3>
|
|
|
|
<p>
|
|
@Model.Owner.Name <br>
|
|
@Html.DisplayFor(m=>m.Owner.PostalAddress)</p>
|
|
|
|
<address>
|
|
<strong>Support:</strong> <a href="mailto:@Model.Admin.EMail">@(Model.Admin.Name)<@(Model.Admin.EMail)></a><br />
|
|
<strong>Marketing:</strong> <a href="mailto:@Model.Owner.EMail">@(Model.Owner.Name)<@(Model.Owner.EMail)></a>
|
|
</address>
|