jefklakscodex/themes/jefklak-creative-portfolio/layouts/partials/portfolio-block.html

29 lines
1.1 KiB
HTML

<div class="row box-masonry" style="margin-right: 10px">
<div class="col-md-4">
<a href="{{ .Permalink }}" title="" class="box-masonry-image with-hover-overlay with-hover-icon">
<img loading="lazy" src="{{.Site.BaseURL}}{{ .Params.image }}" alt="thumbnail of {{ .Title }}" class="img-responsive img-inactive">
</a>
</div>
<div class="col-md-8">
<div class="box-masonry-text">
<h4 style="margin: 0; float: left;"><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
{{ .Date.Format (.Site.Params.dateFormat | default "01/2006") | $.Scratch.Set "subtitle" }}
<span class="sidebar-date" style="float: right;">
<svg class='icon icon-inline'>
<use xlink:href='#cal1'></use>
</svg>
{{ $.Scratch.Get "subtitle" }}
</span>
<div class="box-masonry-description" style="clear: both;">
<p>
{{ if .Description }}
{{ .Description }}
{{ else }}
{{ .Summary }}
{{ end }}
</p>
</div>
</div> <!-- box-masonry-text -->
</div>
</div><!-- row -->