45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
@page "/"
|
|
@using EgwCoreLib.BlazorTest.Data
|
|
|
|
<PageTitle>EgwCoreLib Test Site</PageTitle>
|
|
|
|
<div class="mt-4 p-4 bg-primary bg-gradient bg-opacity-25 border border-light text-dark rounded shadow">
|
|
<div class="row">
|
|
<div class="col-6 col-md-8 pr-0">
|
|
<h1>EgwCoreLib</h1>
|
|
<div>
|
|
Test componenti EgwCoreLib
|
|
</div>
|
|
</div>
|
|
<div class="col-6 col-md-4 text-right pl-0">
|
|
<div class="d-flex flex-row-reverse">
|
|
<div class="px-2 badge rounded-pill bg-dark my-4">
|
|
<div class="p-2" style="font-size: 1.5em;">
|
|
<a class="text-light" href="https://www.egalware.com/" target="_blank">powered by EgalWare <img width="32" class="img-fluid" src="images/EgalwareLogo.svg" /></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card mt-2 shadow my-lg-5">
|
|
<div class="card-body">
|
|
<div class="row px-0">
|
|
@foreach (var item in MenuList)
|
|
{
|
|
<div class="col-6 col-md-4 col-lg-3 my-1">
|
|
<NavLink type="button" class="btn btn-primary bg-gradient text-light p-3 w-100" title="@item.Value" href="@item.Key">
|
|
<i class="fa-solid fa-wrench fa-2x mb-2" aria-hidden="true"></i>
|
|
<h5>@item.Value</h5>
|
|
</NavLink>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@code {
|
|
|
|
private Dictionary<string, string> MenuList { get; set; } = TestData.MenuList;
|
|
} |