stereobooster 2023-09-12 19:19:34 +00:00 committed by GitHub
commit 0d34a88d91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 20 deletions

View File

@ -12,6 +12,7 @@ autoSwitchAppearance = true
enableSearch = true enableSearch = true
enableCodeCopy = true enableCodeCopy = true
enableImageLazyLoading = true enableImageLazyLoading = true
enableWebp = true
# robots = "" # robots = ""
fingerprintAlgorithm = "sha256" fingerprintAlgorithm = "sha256"

View File

@ -9,6 +9,10 @@ This article offers a sample of basic Markdown formatting that can be used in Co
<!--more--> <!--more-->
## Image
![sample image](thumb-surendran-mp-IhWYiwSxm8g-unsplash.jpg)
## Headings ## Headings
The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest. The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.

View File

@ -2,6 +2,7 @@
{{ $altText := .Text }} {{ $altText := .Text }}
{{ $caption := .Title }} {{ $caption := .Title }}
{{ $lazyLoad := $.Page.Site.Params.enableImageLazyLoading | default true }} {{ $lazyLoad := $.Page.Site.Params.enableImageLazyLoading | default true }}
{{ $webp := $.Page.Site.Params.enableWebp | default true }}
{{ if findRE "^https?" $url.Scheme }} {{ if findRE "^https?" $url.Scheme }}
<figure> <figure>
<img <img
@ -23,29 +24,49 @@
{{ end }} {{ end }}
{{ with $resource }} {{ with $resource }}
<figure> <figure>
<img <picture>
class="mx-auto my-0 rounded-md" {{ if (and (ne .MediaType.SubType "svg") $webp) }}
{{ if eq .MediaType.SubType "svg" }} <source
src="{{ .RelPermalink }}" {{ if lt .Width 660 }}
{{ else }} {{ with .Resize (printf "%dx%d webp" .Width .Height) }}
width="{{ .Width }}" src="{{ .RelPermalink }}"
height="{{ .Height }}" {{ end }}
{{ if lt .Width 660 }} {{ else }}
srcset="
{{- (.Resize "330x webp").RelPermalink }} 330w,
{{- (.Resize "660x webp").RelPermalink }} 660w,
{{- (.Resize "1024x webp").RelPermalink }} 1024w,
{{- (.Resize "1320x webp").RelPermalink }} 2x"
src="{{ (.Resize "660x webp").RelPermalink }}"
{{ end }}
type="image/webp"
/>
{{ end }}
<img
class="mx-auto my-0 rounded-md"
{{ if eq .MediaType.SubType "svg" }}
src="{{ .RelPermalink }}" src="{{ .RelPermalink }}"
{{ else }} {{ else }}
srcset=" width="{{ .Width }}"
{{- (.Resize "330x").RelPermalink }} 330w, height="{{ .Height }}"
{{- (.Resize "660x").RelPermalink }} 660w, decoding="async"
{{- (.Resize "1024x").RelPermalink }} 1024w, {{ if lt .Width 660 }}
{{- (.Resize "1320x").RelPermalink }} 2x" src="{{ .RelPermalink }}"
src="{{ (.Resize "660x").RelPermalink }}" {{ else }}
srcset="
{{- (.Resize "330x").RelPermalink }} 330w,
{{- (.Resize "660x").RelPermalink }} 660w,
{{- (.Resize "1024x").RelPermalink }} 1024w,
{{- (.Resize "1320x").RelPermalink }} 2x"
src="{{ (.Resize "660x").RelPermalink }}"
{{ end }}
{{ end }} {{ end }}
{{ end }} alt="{{ $altText }}"
alt="{{ $altText }}" {{ if $lazyLoad }}
{{ if $lazyLoad }} loading="lazy"
loading="lazy" {{ end }}
{{ end }} />
/> </picture>
{{ with $caption }}<figcaption class="text-center">{{ . | markdownify }}</figcaption>{{ end }} {{ with $caption }}<figcaption class="text-center">{{ . | markdownify }}</figcaption>{{ end }}
</figure> </figure>
{{ else }} {{ else }}