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

View File

@@ -0,0 +1,16 @@
package components
import "github.com/bakyazi/gotemplresume/dto"
templ Timeline(title string,items []dto.ExperienceItem) {
<div class="timeline">
<div class="timeline-title">
{title}
</div>
<div class="timeline-items">
for _, item := range items {
@TimelineItem(item){}
}
</div>
</div>
}