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.
27 lines
1.2 KiB
27 lines
1.2 KiB
{{ define "main" }}
|
|
<main class="post py-5">
|
|
<div class="container-fluid">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-xl-10 col-lg-10 col-md-12 col-12">
|
|
{{ $title := substr (replace .Title " " "") 0 }}
|
|
<h1 class="post-title mb-3">{{ i18n $title }}</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row py-4">
|
|
{{ range .Pages }}
|
|
<div class="col-xl-4 col-lg-12 col-12 pb-4 categories">
|
|
<a class="zoom-wrapper" href="{{ .Permalink }}" aria-label="{{ .Title }} case study">
|
|
<img class="img-fluid w-100 with-js" src="{{ .Site.BaseURL }}/img/work/{{- with .Params.images }}{{ index . 1 }}{{ end -}}.svg" alt="{{ .Title }}">
|
|
<img class="img-fluid w-100 no-js" src="{{ .Site.BaseURL }}/img/work/{{- with .Params.images }}{{ index . 1 }}{{ end -}}.webp" alt="{{ .Title }}">
|
|
</a>
|
|
<a class="title mt-3 mb-0" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{ end }}
|