Initial lineup (2025)

This commit is contained in:
Abner Coimbre
2025-04-11 10:03:24 -07:00
parent a3628e857b
commit 6139be8dff
6 changed files with 58 additions and 4 deletions

View File

@@ -42,10 +42,37 @@
</div>
<!-- Coming Soon Banner -->
<div class="bg-[#1a1a1a] p-6 rounded-lg text-center">
<div class="bg-[#1a1a1a] p-6 rounded-lg text-center mb-8">
<h3 class="text-xl font-semibold text-white mb-2">{{ .Params.coming_soon_text | default "Schedule Coming Soon" }}</h3>
<p class="text-gray-300">{{ .Params.coming_soon_description | default "We're finalizing an amazing lineup of speakers and workshops." }}</p>
</div>
<!-- Initial Speakers Section (if available) -->
{{ if .Params.initial_speakers }}
<div class="mt-6">
<h3 class="text-xl font-semibold text-white mb-4 text-left">Initial Lineup</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
{{ range .Params.initial_speakers }}
<div class="bg-[#1a1a1a] p-4 rounded-lg flex items-center">
{{ if .image }}
<img src="{{ .image }}" alt="{{ .name }}" class="w-16 h-16 rounded-full object-cover mr-4">
{{ else }}
<div class="w-16 h-16 rounded-full bg-gray-700 flex items-center justify-center mr-4">
<i class="fa fa-user text-gray-400 text-xl"></i>
</div>
{{ end }}
<div class="text-left">
<h4 class="text-white font-medium">{{ .name }}</h4>
<p class="text-gray-300 text-sm">{{ .topic }}</p>
{{ if .affiliation }}
<p class="text-gray-400 text-xs">{{ .affiliation }}</p>
{{ end }}
</div>
</div>
{{ end }}
</div>
</div>
{{ end }}
</div>
<!-- Call to Action Buttons -->
@@ -61,6 +88,12 @@
<i class="fa-brands fa-discord mr-2"></i> Join Our Discord
</a>
{{ end }}
{{ if .Params.enable_cfp }}
<a href="{{ .Params.cfp_link | default "#" }}" class="px-6 py-3 bg-[#2a9d8f] hover:bg-[#238b7e] text-white font-medium rounded-md transition-colors">
<i class="fa fa-microphone mr-2"></i> Submit a Talk
</a>
{{ end }}
</div>
<!-- Event Description -->