forked from oyd/ozgurkon-2020-site
parent
d53e8aec27
commit
0a2c8caf97
@ -1,3 +1,9 @@ |
|||||||
--- |
--- |
||||||
title: Partners |
title: Partners |
||||||
|
categories: |
||||||
|
- platinium |
||||||
|
- gold |
||||||
|
- soutien |
||||||
|
- media |
||||||
|
- communautes |
||||||
--- |
--- |
@ -0,0 +1,9 @@ |
|||||||
|
.page.partners { |
||||||
|
|
||||||
|
|
||||||
|
.content { |
||||||
|
img { |
||||||
|
width: 50vw; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,5 +1,5 @@ |
|||||||
<a class="partner" |
<a class="partner" |
||||||
href="{{ .Params.website }}" |
href="{{ .URL }}" |
||||||
aria-label="{{ .Title }}" |
aria-label="{{ .Title }}" |
||||||
title="{{ .Title }}" |
title="{{ .Title }}" |
||||||
style="background-image: url({{ .Params.logo }});"></a> |
style="background-image: url({{ .Params.logo }});"></a> |
@ -0,0 +1,24 @@ |
|||||||
|
{{ 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 }} |
Loading…
Reference in new issue