Files
yaflay.ru/Pages/Index.cshtml
2024-04-17 22:55:07 +03:00

16 lines
334 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "yawaflua";
}
<h3 align="left" class="readme" >README.md</h3>
@{
string path = $"{this.Request.Scheme}://{this.Request.Host}";
string Github_readme = Startup.client.GetStringAsync($"{path}/api/Index").Result;
<div class="text"> @Html.Raw(Github_readme) </div>
}