yavsc/src/Yavsc.Org/Views/Home/Contact.cshtml
2026-06-04 12:13:37 +01:00

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)&lt;@(Model.Admin.EMail)&gt;</a><br />
<strong>Marketing:</strong> <a href="mailto:@Model.Owner.EMail">@(Model.Owner.Name)&lt;@(Model.Owner.EMail)&gt;</a>
</address>