Files
yaflay.ru/Pages/Index.cshtml
Дмитрий Шиманский 152b5d8812 add page redirector for chorten-url service, u can use this feature, using this route: DOMAIN/?uri=SHORTED_URI
fix backend controller and change route to DOMAIN/r/SHORTED_URI
2024-01-17 11:51:53 +03:00

16 lines
343 B
Plaintext

@page "{uri?}"
@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>
}