This repository has been archived on 2020-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
victor-hugo/site/themes/hugo-strata-theme/layouts/partials/portfolio.html

14 lines
506 B
HTML
Executable File

{{ "<!-- portfolio -->" | safeHTML }}
<section>
{{ with .Site.Params.portfolio.title }}<h2>{{ . | markdownify }}</h2>{{ end }}
<div class="row">
{{ range .Site.Params.portfolio.gallery }}
<article class="6u 12u$(xsmall) work-item">
<a href="{{ $.Site.BaseURL }}images/{{ .image }}" class="image fit thumb"><img src="{{ $.Site.BaseURL }}images/{{ .thumb }}" alt="" /></a>
<h3>{{ .title | markdownify }}</h3>
<p>{{ .description | markdownify }}</p>
</article>
{{ end }}
</div>
</section>