Files
yaflay.ru/Pages/Index.cshtml
Дмитрий Шиманский 256c3c10d4 fix memory crashing
2023-11-06 21:58:03 +03:00

14 lines
312 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "YaFlay";
}
<h3 align="left" class="readme" >README.md</h3>
@{
string Github_readme = Startup.client.GetStringAsync("https://raw.githubusercontent.com/YaFlay/YaFlay/master/README.md").Result;
<div class="text"> @Html.Raw(Github_readme) </div>
}