añadida paginas de proyecto y CV

This commit is contained in:
2025-07-05 00:08:51 -03:00
parent 9826085cb1
commit 7aedaac585
45 changed files with 1349 additions and 168 deletions

View File

@@ -0,0 +1,27 @@
<div class="rounded-t-full bg-sky-600">.</div>
<div class="flex justify-center gap-2 p-8 bg-sky-600">
{{ range .pngFiles }}
<button class="p-1 rounded bg-white transform hover:scale-120
transition-all duration-100 ease-linear border-2 hover:z-2 active:z-0" onclick="openmodal({{.}})">
<img src="{{ . }}" alt="Carousel Image" class="
h-[20rem] rounded">
</button>
{{ end }}
</div>
<div class="rounded-b-full bg-sky-600 shadow-xl/30 mb-4">.</div>
{{ range .pngFiles }}
<dialog id="{{ . }}" class="fixed inset-0 flex items-center justify-center
z-50 w-full h-full bg-black bg-opacity-50"
style="background-color: rgba(0,0,0,0.2);" onclick="openmodal({{.}})" hidden>
<img src="{{ . }}" alt="Carousel Image" class="
mt-2 p-1 bg-white border-2
h-[80%] rounded-md opacity-100">
</dialog>
{{ end }}
<script>
function openmodal(id){
let dialog = document.getElementById(id);
dialog.toggleAttribute("hidden");
}
</script>

View File

@@ -16,7 +16,7 @@
>
<a
class="text-gray-300 hover:text-white px-3 py-2 muted"
title="Under Construction 🚧👷‍♂️🏗️"
href="https://fedesrv.ddns.net/git/fede/CV/media/branch/master/AltaCV_Template.pdf"
target="_blank"
>CV</a
>

View File

@@ -2,12 +2,11 @@
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{{ range first 3 (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"
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"
>
{{ if .Params.image }}
<img
src="{{ .Params.image }}"
src="{{path.Join .Path .Params.image}}"
alt="{{ .Title }}"
class="w-full h-48 object-cover"
/>

View File

@@ -0,0 +1,13 @@
<div class="flex justify-center">
<div class="flex w-100 ">
<hr class="w-[50%] mt-6">
<p class="text-4xl">
{{if .text}}
{{.text}}
{{else}}
o
{{end}}
</p>
<hr class="w-[50%] mt-6">
</div>
</div>