initial commit

This commit is contained in:
Berkay Akyazı
2024-03-11 23:29:00 +03:00
commit 4352c5579a
35 changed files with 6438 additions and 0 deletions

23
pages/resume.templ Normal file
View File

@@ -0,0 +1,23 @@
package pages
import "github.com/bakyazi/gotemplresume/dto"
import "github.com/bakyazi/gotemplresume/pages/components"
templ Resume(r dto.Resume) {
@Base(){
<div class="site-container">
<div class="flex justify-end items-center space-x-4">
<a href="/resources/cv.pdf" target="_blank">
<div class="flex justify-end items-center text-cyan-700 hover:bg-cyan-700 hover:bg-opacity-60 p-1.5 rounded-md hover:text-white"
>
<label class="cursor-pointer">Download CV</label>
</div>
</a>
</div>
<div>
@components.Timeline("Work Experience", r.WorkExperiences){}
@components.Timeline("Education", r.Education){}
</div>
</div>
}
}