You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
550 B
HTML
20 lines
550 B
HTML
{{ $_hugo_config := `{ "version": 1 }` }}
|
|
{{ if .IsNamedParams }}
|
|
{{ $.Scratch.Add "image" ( .Get "image") }}
|
|
{{ $.Scratch.Add "alt" ( .Get "alt") }}
|
|
{{ else }}
|
|
{{ $.Scratch.Add "image" "" }}
|
|
{{ $.Scratch.Add "alt" "" }}
|
|
{{ end }}
|
|
|
|
{{ $image := $.Scratch.Get "image" }}
|
|
{{ $alt := $.Scratch.Get "alt" }}
|
|
|
|
<div class="portfolio">
|
|
<div class="portfolio-inner">
|
|
<div class="portfolio-image"><img src="{{ $image }}" alt="{{ $alt }}"></div>
|
|
<div class="portfolio-content">
|
|
{{ .Inner }}
|
|
</div>
|
|
</div>
|
|
</div> |