2026-06-04 12:13:37 +01:00
|
|
|
@using Microsoft.IdentityModel.Protocols.Configuration
|
2025-09-14 22:43:40 +01:00
|
|
|
@model SiteSettings
|
2019-01-01 16:28:47 +00:00
|
|
|
@{
|
2026-06-04 12:13:37 +01:00
|
|
|
ViewBag.Title = "Contact";
|
|
|
|
|
if (Model.Owner==null)
|
|
|
|
|
throw new InvalidConfigurationException("no owner");
|
2019-01-01 16:28:47 +00:00
|
|
|
}
|
2026-06-04 12:13:37 +01:00
|
|
|
|
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
|
<h3>@ViewBag.Message</h3>
|
2019-01-01 16:28:47 +00:00
|
|
|
|
2025-09-14 22:43:40 +01:00
|
|
|
<p>
|
|
|
|
|
@Model.Owner.Name <br>
|
|
|
|
|
@Html.DisplayFor(m=>m.Owner.PostalAddress)</p>
|
2019-01-01 16:28:47 +00:00
|
|
|
|
|
|
|
|
<address>
|
2025-09-14 22:43:40 +01:00
|
|
|
<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>
|
2019-01-01 16:28:47 +00:00
|
|
|
</address>
|