First pass of what I'd call "usable" versions of the pages: - Index - About - Tickets There's some more work to be done in the year_con partial to represent each of the conference years. The biggest change of this commit by far is the introduction/commonization of the partial 'features.html'. This is the behemoth of a partial that effectively gives us the options to show slide style content. At some point it might be advantageous to break it apart more, but it's relatively straightforward to include in a layout and start putting together pages.
17 lines
648 B
HTML
17 lines
648 B
HTML
{{ if .img_grid }}
|
|
<div class="container relative mx-auto px-4">
|
|
<div class="flex flex-wrap justify-center mx-auto lg:w-full md:w-5/6">
|
|
{{ range $i, $option := .img_grid }}
|
|
<div class="w-1/2 md:w-1/3 p-2">
|
|
<div class="flex justify-center items-center w-full">
|
|
<a href="{{ $option.link }}" class="relative align-center" target="_blank" rel="noopener noreferrer"
|
|
title="{{ $option.name }}">
|
|
{{ $imgres := .resources.Get $option.icon }}
|
|
<img class="max-w-24 align-center" src="{{ $option.icon }}" alt="{{ .Item.Name }}">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |