Replace local landscape with remote one

This commit is contained in:
Will Faught
2023-03-07 21:33:09 -08:00
parent bbdea7c507
commit d9ba40d10e
5 changed files with 31 additions and 31 deletions

View File

@@ -16,108 +16,108 @@ Paige provides a `paige/image` shortcode for displaying an image.
Code:
```go-text-template
{{</* paige/image alt="Landscape" src="landscape.webp" */>}}
{{</* paige/image alt="Landscape" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image alt="Landscape" src="landscape.webp" >}}
{{< paige/image alt="Landscape" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Height parameter
Code:
```go-text-template
{{</* paige/image height="10rem" src="landscape.webp" */>}}
{{</* paige/image height="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image height="10rem" src="landscape.webp" >}}
{{< paige/image height="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Link parameter
Code:
```go-text-template
{{</* paige/image link="https://github.com/willfaught/paige" src="landscape.webp" */>}}
{{</* paige/image link="https://github.com/willfaught/paige" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image link="https://github.com/willfaught/paige" src="landscape.webp" >}}
{{< paige/image link="https://github.com/willfaught/paige" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Maxheight parameter
Code:
```go-text-template
{{</* paige/image maxheight="10rem" src="landscape.webp" */>}}
{{</* paige/image maxheight="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image maxheight="10rem" src="landscape.webp" >}}
{{< paige/image maxheight="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Maxwidth parameter
Code:
```go-text-template
{{</* paige/image maxwidth="10rem" src="landscape.webp" */>}}
{{</* paige/image maxwidth="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image maxwidth="10rem" src="landscape.webp" >}}
{{< paige/image maxwidth="10rem" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Method and options parameters
Code:
```go-text-template
{{</* paige/image link="https://github.com/willfaught/paige" method="resize" options="550x webp picture Lanczos" src="landscape.webp" */>}}
{{</* paige/image link="https://github.com/willfaught/paige" method="resize" options="550x webp picture Lanczos" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image link="https://github.com/willfaught/paige" method="resize" options="550x webp picture Lanczos" src="landscape.webp" >}}
{{< paige/image link="https://github.com/willfaught/paige" method="resize" options="550x webp picture Lanczos" src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Src parameter
Code:
```go-text-template
{{</* paige/image src="landscape.webp" */>}}
{{</* paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
```
Result:
{{< paige/image src="landscape.webp" >}}
{{< paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
## Title parameter
Code:
```go-text-template
{{</* paige/image src="landscape.webp" title="Landscape" */>}}
{{</* paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" title="Landscape" */>}}
```
Result:
{{< paige/image src="landscape.webp" title="Landscape" >}}
{{< paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" title="Landscape" >}}
## Width parameter
Code:
```go-text-template
{{</* paige/image src="landscape.webp" width="50%" */>}}
{{</* paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" width="50%" */>}}
```
Result:
{{< paige/image src="landscape.webp" width="50%" >}}
{{< paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" width="50%" >}}
## Figure
@@ -125,12 +125,12 @@ Code:
```go-text-template
{{</* paige/figure caption="Landscape" */>}}
{{</* paige/image src="landscape.webp" */>}}
{{</* paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" */>}}
{{</* /paige/figure */>}}
```
Result:
{{< paige/figure caption="Landscape" >}}
{{< paige/image src="landscape.webp" >}}
{{< paige/image src="https://images.unsplash.com/photo-1490604001847-b712b0c2f967" >}}
{{< /paige/figure >}}