Buttons page
This commit is contained in:
parent
13d8d21071
commit
d8cbd092b2
18 changed files with 337 additions and 73 deletions
21
layouts/partials/responsive-image.html
Normal file
21
layouts/partials/responsive-image.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<!-- prettier-ignore -->
|
||||
{{ $src := .src }}
|
||||
{{ $alt := .alt | default "" }}
|
||||
{{ $width := .width | default "800x" }}
|
||||
|
||||
<figure class="blog-img-container">
|
||||
{{ with .page.Resources.GetMatch $src }}
|
||||
{{ $resized := .Resize $width }}
|
||||
<img src="{{ $resized.RelPermalink }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
||||
{{ else }}
|
||||
{{ with resources.Get $src }}
|
||||
{{ $resized := .Resize $width }}
|
||||
<img src="{{ $resized.RelPermalink }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
||||
{{ else }}
|
||||
<img src="{{ $src }}" alt="{{ $alt }}" loading="lazy" class="blog-img" />
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if $alt }}
|
||||
<figcaption class="blog-img-caption">{{ $alt }}</figcaption>
|
||||
{{ end }}
|
||||
</figure>
|
||||
Loading…
Add table
Add a link
Reference in a new issue