mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2025-12-13 17:16:26 +02:00
14 lines
312 B
Plaintext
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/yawaflua/YaFlay/main/README.md").Result;
|
|
<div class="text"> @Html.Raw(Github_readme) </div>
|
|
}
|
|
|