Iceshrimp.NET/Iceshrimp.Backend/Pages/Index.cshtml
2024-11-21 18:35:37 +01:00

29 lines
No EOL
782 B
Text

@page "/"
@model IndexModel
@* ReSharper disable Html.PathError *@
@{
ViewData["title"] = $"Home - {Model.InstanceName}";
//TODO: logo / banner & favicon
}
@section head
{
<meta name="twitter:card" content="summary">
<meta name="og:title" content="Home - @Model.InstanceName">
<meta name="og:description" content="@Model.InstanceDescription">
<meta name="og:site_name" content="@Model.InstanceName">
}
<div class="header">
<h1>@Model.InstanceName</h1>
<div class="wordmark">
<img src="~/_content/Iceshrimp.Assets.Branding/welcome-logo.svg" alt="Iceshrimp"/>
</div>
</div>
<p>@Model.InstanceDescription</p>
@if (Model.ContactEmail != null)
{
<span>| <a href="mailto:@Model.ContactEmail">Contact instance administrators</a></span>
}