17 lines
No EOL
541 B
Text
17 lines
No EOL
541 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>@(ViewData["title"] ?? "Iceshrimp.NET")</title>
|
|
@* ReSharper disable once Html.PathError *@
|
|
<link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/>
|
|
<link rel="stylesheet" href="~/css/default.css"/>
|
|
@* ReSharper disable once Html.PathError *@
|
|
<link rel="icon" type="image/png" href="~/favicon.png"/>
|
|
@await RenderSectionAsync("head", false)
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
@await RenderSectionAsync("scripts", false)
|
|
</body>
|
|
</html> |