mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2025-04-28 18:57:47 +02:00
Moved portfolio.html to layouts/static
This commit is contained in:
parent
7a7ef4a8c1
commit
21621a52ae
1 changed files with 5 additions and 2 deletions
|
@ -1,59 +0,0 @@
|
|||
{{ 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 }}
|
||||
<a class="masonry-item" href="{{ .image | absURL }}" data-lightbox="{{ $category }}" data-title="{{ .name }}">
|
||||
<img src="{{ .image_thumb | absURL }}" alt="" class="masonry-content">
|
||||
</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<script src="{{ .image_loaded_plugin }}"></script>
|
||||
</section>
|
||||
{{"<!-- /Portfolio Section -->" | safeHTML}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue