forked from oyd/ozgurkon-2020-site
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
446 B
24 lines
446 B
{{ define "main" }}
|
|
|
|
<div class="hero">
|
|
<h1>{{ $.Page.Params.Title }}</h1>
|
|
<div class="description">
|
|
TODO: filter and search
|
|
</div>
|
|
</div>
|
|
|
|
{{ $site := .Site }}
|
|
{{ range .Params.categories }}
|
|
<section class="partners-group partner-{{ . }}">
|
|
<h3 class="fancy">
|
|
<span>{{ . }}</span>
|
|
</h3>
|
|
<ul>
|
|
{{ range where $site.Pages "Params.category" . }}
|
|
<li>{{ partial "partner.html" . }}</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ end }} |