mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2025-12-09 20:19:32 +02:00
16 lines
334 B
Plaintext
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>
|
|
}
|
|
|
|
|