jerguero-cs/Pages/Index.cshtml

24 lines
655 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
@Html.Partial("/Pages/Components/_Navbar.cshtml")
<div class="container">
<div class="bg-accent text-accent-content py-2 m-1 rounded-md text-center font-bold text-lg">
Jerguero
</div>
<div class="text-center p-2">
<a href="/New" class="py-1 px-2 rounded bg-c-primary text-c-on-primary hover:underline">
Agregá una nueva definición
</a>
</div>
@Html.Partial("./_Post.cshtml")
@Html.Partial("./_Post.cshtml")
@Html.Partial("./_Post.cshtml")
@Html.Partial("./_Post.cshtml")
<div class="w-full h-16"></div>
</div>