2025-11-12 18:26:18 +00:00
|
|
|
{{define "section-references"}}
|
|
|
|
|
<!-- References Section -->
|
|
|
|
|
{{if .CV.References}}
|
2025-11-18 20:18:28 +00:00
|
|
|
<section id="references" class="cv-section component-wrapper">
|
|
|
|
|
<!-- Actual Content -->
|
|
|
|
|
<div class="actual-content">
|
|
|
|
|
<details open>
|
|
|
|
|
<summary>
|
|
|
|
|
<h3 class="section-title">
|
|
|
|
|
<iconify-icon icon="mdi:link-variant" width="24" height="24" class="section-icon"></iconify-icon>
|
2025-11-30 10:13:37 +00:00
|
|
|
{{.UI.Navigation.References}}
|
2025-11-18 20:18:28 +00:00
|
|
|
</h3>
|
|
|
|
|
</summary>
|
|
|
|
|
{{range .CV.References}}
|
|
|
|
|
<div class="reference-item">
|
2025-11-20 12:40:25 +00:00
|
|
|
{{if .TextBefore}}{{.TextBefore}} {{end}}{{if eq .Action "downloadPDF"}}<a href="/cv-jamr-{{$.CurrentYear}}-{{$.Lang}}.pdf" target="_blank" rel="noopener noreferrer"><strong>{{if .LinkText}}{{.LinkText}}{{else}}{{.Title}}{{end}}</strong></a>{{else}}<a href="{{.URL}}" {{if and (eq .Type "cv") (ne .URL "/?lang=en") (ne .URL "/?lang=es")}}download{{else}}target="_blank" rel="noopener noreferrer"{{end}}><strong>{{if .LinkText}}{{.LinkText}}{{else}}{{.Title}}{{end}}</strong></a>{{end}}{{if .TextAfter}} {{.TextAfter}}{{end}}
|
2025-11-18 20:18:28 +00:00
|
|
|
</div>
|
|
|
|
|
{{end}}
|
|
|
|
|
</details>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Skeleton Content -->
|
|
|
|
|
<div class="skeleton-content">
|
|
|
|
|
<div class="skeleton-section">
|
|
|
|
|
<div class="skeleton skeleton-section-title"></div>
|
|
|
|
|
<div class="skeleton skeleton-reference-item"></div>
|
|
|
|
|
<div class="skeleton skeleton-reference-item" style="width: 80%;"></div>
|
|
|
|
|
<div class="skeleton skeleton-reference-item" style="width: 90%;"></div>
|
|
|
|
|
</div>
|
2025-11-12 18:26:18 +00:00
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
{{end}}
|
|
|
|
|
{{end}}
|