Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 5 additions & 20 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,30 +49,15 @@ params:
team: "Team"
social: "Community"

# The Call To Action button at the header,
# The secondary button at the header
CallToAction:
text: "Become a Sponsor"
link: "/sponsor"

# The Call To Action button at the header,
CallForPaper:
text: "2025 Photos"
link: "https://photos.app.goo.gl/f7cb8nFzQKhkFNXN8"

# The Call To Action button at the header,
VideoButton:
text: "2025 Videos"
link: "https://www.youtube.com/playlist?list=PLRM-8sTy13XvT_S1KJWZz2KOJgOt_vVVH"

# The Call For Paper button at the header,
# CallForPaper:
# text: "Apply to Speak"
# link: "https://sessionize.com/gophercon-israel-2025"

# The tickets button at the header,
# Tickets:
# text: "Purchase Ticket"
# link: "https://www.eventer.co.il/gc2025"
# The primary button at the header
Tickets:
text: "Buy a Ticket"
link: "https://www.eventer.co.il/gophercon2026"

# Call for Speakers (Sessionize CFP) — rendered as the "cfp" section
CFP:
Expand Down
8 changes: 2 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,10 @@ <h1 class="logo-name reveal">
<div class="call-action-area reveal">


<a href="https://www.gophercon.org.il/sponsor" class="call-action-link" title="Become a Sponsor">Become a Sponsor</a>


<a href="https://photos.app.goo.gl/f7cb8nFzQKhkFNXN8" class="call-action-link" target="_blank" title="2025 Photos">2025 Photos</a>
<a href="https://www.eventer.co.il/gophercon2026" class="call-action-link" target="_blank" rel="noopener" title="Buy a Ticket">Buy a Ticket</a>



<a href="https://www.youtube.com/playlist?list=PLRM-8sTy13XvT_S1KJWZz2KOJgOt_vVVH" class="call-action-link" target="_blank" title="2025 Videos">2025 Videos</a>
<a href="https://www.gophercon.org.il/sponsor" class="call-action-link" title="Become a Sponsor">Become a Sponsor</a>

</div>

Expand Down
12 changes: 3 additions & 9 deletions layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,11 @@ <h1 class="logo-name reveal">
{{ with .price }}
<span class="price">{{ . }}</span>
{{ end }}
{{ with .calltoaction }}
<a href="{{ .link }}" class="call-action-link" title="{{ .text }}">{{ .text }}</a>
{{ end }}
{{ with .callforpaper }}
<a href="{{ .link }}" class="call-action-link" target="_blank" title="{{ .text }}">{{ .text }}</a>
{{ end }}
{{ with .tickets }}
<a href="{{ .link }}" class="call-action-link" target="_blank" title="{{ .text }}">{{ .text }}</a>
<a href="{{ .link }}" class="call-action-link" target="_blank" rel="noopener" title="{{ .text }}">{{ .text }}</a>
{{ end }}
{{ with .videoButton }}
<a href="{{ .link }}" class="call-action-link" target="_blank" title="{{ .text }}">{{ .text }}</a>
{{ with .calltoaction }}
<a href="{{ .link }}" class="call-action-link" title="{{ .text }}">{{ .text }}</a>
{{ end }}
</div>

Expand Down