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.
23 lines
871 B
23 lines
871 B
{{ 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">
|
|
<h1 class="post-title mb-3">{{ .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 }}"><img class="img-fluid w-100" src="{{ .Site.BaseURL }}/img/work/{{ .Params.image }}" alt="{{ .Title }}"></a>
|
|
<a class="title mt-3 mb-0" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{ end }}
|