Files
yaflay.ru/Pages/Index.cshtml
Дмитрий Шиманский 94003f20e1 Create autosave readme from github readme
2023-10-20 17:54:24 +03:00

15 lines
358 B
Plaintext

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