mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-28 14:34:22 +01:00
62 lines
No EOL
2.5 KiB
HTML
62 lines
No EOL
2.5 KiB
HTML
{{ define "main" }}
|
|
|
|
{{ partial "navigation.html" . }}
|
|
|
|
{{ partial "bradcrumb.html" . }}
|
|
|
|
{{ $data := index site.Data }}
|
|
|
|
{{ if $data.portfolio.portfolio.enable }}
|
|
{{ with $data.portfolio.portfolio }}
|
|
{{"<!-- Portfolio Section -->" | safeHTML}}
|
|
<section class="portfolio section" id="portfolio">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-xl-12">
|
|
{{"<!-- Title -->" | safeHTML}}
|
|
<div class="title text-center">
|
|
<h2>{{ with .title }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span class="color">
|
|
{{ with .title }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}</span></h2>
|
|
<div class="border-biotech"></div>
|
|
</div>
|
|
{{"<!-- /Title -->" | safeHTML}}
|
|
</div>
|
|
</div>
|
|
{{ range .portfolio_categories }}
|
|
{{ $text_color := .text_color}}
|
|
<div class="row portfolio-category">
|
|
|
|
<div class="col-12">
|
|
{{"<!-- Section Title -->" | safeHTML}}
|
|
<div class="title text-center">
|
|
<h2 class="portfolio-category-title" style="background-color: {{ .bg_color}};">
|
|
{{ with .name }} {{ index (split . " ") 0 | safeHTML }} {{ end }}<span style="color: {{ $text_color }};">
|
|
{{ with .name }} {{ after (len (index (split . " ") 0)) . | safeHTML }} {{ end }}</span></h2>
|
|
<div class="border-biotech"></div>
|
|
</div>
|
|
{{"<!-- /Section Title -->" | safeHTML}}
|
|
</div>
|
|
|
|
<div class="masonry-wrapper">
|
|
<div class="masonry">
|
|
{{ $category := .name }}
|
|
{{ range .portfolio_items }}
|
|
{{- $original := resources.Get .image -}}
|
|
{{ $thumb := $original.Fit "512x512" }}
|
|
{{ $image := $original.Fit "1080x1080" }}
|
|
<a class="masonry-item" href="{{ $image.RelPermalink }}" data-lightbox="{{ $category }}" data-title="{{ .name }}">
|
|
<img src="{{ $thumb.RelPermalink }}" alt="" class="masonry-content">
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
<script src="{{ .image_loaded_plugin }}"></script>
|
|
</section>
|
|
{{"<!-- /Portfolio Section -->" | safeHTML}}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ end }} |