mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-23 15:19:22 +00:00
Initial post commit i have also added more short codes
This commit is contained in:
22
themes/lhs/layouts/shortcodes/image2.html
Normal file
22
themes/lhs/layouts/shortcodes/image2.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ $img := .Page.Resources.GetMatch (printf "*%s*" (.Get "src")) }}
|
||||
{{ $width := .Get "width" }}
|
||||
{{ $img = $img.Resize (print (default "1264x" $width) " webp") }}
|
||||
{{ $title := .Get "title" }}
|
||||
{{ $class := .Get "class" }}
|
||||
{{- with .Parent -}}
|
||||
<div>
|
||||
{{ end }}
|
||||
<figure class="image{{ if $class }} {{ $class }}{{ end }}">
|
||||
<img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}" {{ if $title }}
|
||||
alt="{{ $title }}" {{ end }}>
|
||||
{{ if $title }}
|
||||
<figcaption class="is-size-6">
|
||||
<small>
|
||||
{{ $title }}
|
||||
</small>
|
||||
</figcaption>
|
||||
{{ end }}
|
||||
</figure>
|
||||
{{- with .Parent -}}
|
||||
</div>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user