añadidos links al acortador en proyectos

This commit is contained in:
2026-03-22 15:31:08 -03:00
parent 0c3599ca73
commit 7039de81c8
14 changed files with 340 additions and 31 deletions

View File

@@ -1,9 +1,13 @@
<div class="container mx-auto px-4 py-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{{ range first 3 (where .Site.RegularPages "Section" "proyectos") }}
{{ range where site.RegularPages "Section" "proyectos" }}
<div
class="hover:scale-120 hover:z-2 transform-3d hover:rotate-z-2 duration-100 hover:-translate-y-2 bg-white rounded-lg shadow-md overflow-hidden border-3 hover:shadow-xl ease-in"
>
<a
href="{{ .Permalink }}"
>
{{ if .Params.image }}
<img
src="{{path.Join .Path .Params.image}}"
@@ -26,11 +30,6 @@
</p>
<div class="flex justify-between items-center">
<a
href="{{ .Permalink }}"
class="text-blue-500 hover:text-blue-700"
>Ver más</a
>
{{ with .Params.tags }}
<div class="flex flex-wrap">
@@ -45,6 +44,7 @@
{{ end }}
</div>
</div>
</a>
</div>
{{ end }}
</div>