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.
 
 
 
 
 
 
portio-hugo/layouts/partials/blogSection.html

49 lines
1.5 KiB

{{ with .Site.Data.blogSection }}
{{ if .enable }}
<section class="section blog" id="blog">
<div class="blog__shape">
<img src="images/blog/blog-shape.svg" alt="blog shape" />
</div>
<div class="container">
<div class="row mb-5">
<div class="col-lg-6">
<div class="blog__header">
<span class="topTitle">{{ .topTitle }}</span>
{{ .title | markdownify }}
</div>
</div>
<div class="col-lg-6">
<div class="blog__header_button desktop">
<a class="btn btn-outline-secondary btn-zoom" href="{{ .buttonTarget | absURL }}">See all post</a>
</div>
</div>
</div>
<div class="row">
{{ range first 3 (where $.Site.RegularPages "Type" "!=" "portfolio") }}
<div class="col-lg-4">
<div class="blog__item">
<div class="blog__item-thumb">
<img src="{{ .Params.featureImage | absURL }}" alt="post-image">
</div>
<div class="blog__item-content">
<span>{{ .PublishDate.Format "January 2, 2006" }}</span>
<h4>
<a class="text-dark" href="{{ .Permalink }}">{{ .Title }}</a>
</h4>
</div>
</div>
</div>
{{ end }}
</div>
<div class="row">
<div class="col-lg-12">
<div class="blog__header_button mobile">
<a class="btn btn-outline-secondary btn-zoom" href="{{ .buttonTarget | absURL }}">See all post</a>
</div>
</div>
</div>
</div>
</section>
{{ end }} {{ end }}