website
This commit is contained in:
34
themes/portio/layouts/partials/portfolioSection.html
Normal file
34
themes/portio/layouts/partials/portfolioSection.html
Normal file
@ -0,0 +1,34 @@
|
||||
{{ with .Site.Data.portfolioSection }}
|
||||
{{ if .enable }}
|
||||
<section class="section portfolio" id="portfolio">
|
||||
<div class="container">
|
||||
<div class="row text-center">
|
||||
<div class="col-lg-6 offset-lg-3">
|
||||
<div class="portfolio__header mb-5">
|
||||
<span class="top-title">{{ .topTitle }}</span>
|
||||
{{ .title | markdownify }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="portfolio-item-grid">
|
||||
{{ range (where $.Site.RegularPages "Type" "portfolio").Reverse }}
|
||||
<div class="portfolio-item">
|
||||
<img src="{{ .Params.thumbnail }}" class="portfolio-item-thumb" alt="portfolio-thumb" />
|
||||
<div class="portfolio-item-content">
|
||||
<span>{{ .Params.service }}</span>
|
||||
<h3 class="mb-0">
|
||||
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
|
||||
</h3>
|
||||
<a class="see-more-btn" href="{{ .Permalink }}">See details</a>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
{{ end }}
|
Reference in New Issue
Block a user