Files
yaflay.ru/Pages/Index.cshtml

16 lines
335 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>
}