jerguero-cs/Pages/Index.cshtml

24 lines
655 B
Plaintext
Raw Normal View History

2024-08-23 23:10:52 +00:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
2024-08-24 00:25:42 +00:00
@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">
2024-08-24 16:45:34 +00:00
<a href="/New" class="py-1 px-2 rounded bg-c-primary text-c-on-primary hover:underline">
2024-08-24 00:25:42 +00:00
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>
2024-08-23 23:10:52 +00:00
</div>