yavsc/src/Yavsc.Org/Views/Home/Contact.cshtml

19 lines
591 B
Text
Raw Normal View History

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)&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>
2019-01-01 16:28:47 +00:00
</address>