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.
299 lines
5.2 KiB
Markdown
299 lines
5.2 KiB
Markdown
---
|
|
authors: ["will-faught"]
|
|
categories: ["paige", "shortcodes"]
|
|
description: "Demonstration of the Paige gallery shortcode."
|
|
tags: ["figures", "gallery", "images"]
|
|
title: "Gallery Shortcode"
|
|
weight: 50
|
|
---
|
|
|
|
Paige provides a `paige/gallery` shortcode for displaying a list of images.
|
|
|
|
<!--more-->
|
|
|
|
## Align parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery align="start" */>}}
|
|
{{</* paige/image height="20rem" src="2-2.jpg" */>}}
|
|
{{</* paige/image height="10rem" src="2-3.jpg" */>}}
|
|
{{</* /paige/gallery /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery align="start" >}}
|
|
{{< paige/image height="20rem" src="2-2.jpg" >}}
|
|
{{< paige/image height="10rem" src="2-3.jpg" >}}
|
|
{{< /paige/gallery >}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery align="center" */>}}
|
|
{{</* paige/image height="20rem" src="2-2.jpg" */>}}
|
|
{{</* paige/image height="10rem" src="2-3.jpg" */>}}
|
|
{{</* /paige/gallery /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery align="center" >}}
|
|
{{< paige/image height="20rem" src="2-2.jpg" >}}
|
|
{{< paige/image height="10rem" src="2-3.jpg" >}}
|
|
{{< /paige/gallery >}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery align="end" */>}}
|
|
{{</* paige/image height="20rem" src="2-2.jpg" */>}}
|
|
{{</* paige/image height="10rem" src="2-3.jpg" */>}}
|
|
{{</* /paige/gallery /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery align="end" >}}
|
|
{{< paige/image height="20rem" src="2-2.jpg" >}}
|
|
{{< paige/image height="10rem" src="2-3.jpg" >}}
|
|
{{< /paige/gallery >}}
|
|
|
|
## Height parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery height="10rem" images="2-*.jpg" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery height="10rem" images="2-*.jpg" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery height="20rem" images="2-*.jpg" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery height="20rem" images="2-*.jpg" />}}
|
|
|
|
## Images parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-2.jpg" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-2.jpg" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" />}}
|
|
|
|
## Justify parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" justify="start" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" justify="start" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" justify="center" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" justify="center" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" justify="end" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" justify="end" />}}
|
|
|
|
## Maxheight parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" maxheight="10rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" maxheight="10rem" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" maxheight="20rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" maxheight="20rem" />}}
|
|
|
|
## Maxwidth parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" maxwidth="10rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" maxwidth="10rem" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" maxwidth="20rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" maxwidth="20rem" />}}
|
|
|
|
## Method and options parameters
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" method="fill" options="550x550 r90 webp picture Lanczos" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" method="fill" options="550x550 r90 webp picture Lanczos" />}}
|
|
|
|
## Type
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="*.jpg" type="grid" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="*.jpg" type="grid" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="*.jpg" maxheight="10rem" type="rows" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="*.jpg" maxheight="10rem" type="rows" />}}
|
|
|
|
## Width parameter
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" width="10rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" width="10rem" />}}
|
|
|
|
---
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery images="2-*.jpg" width="20rem" /*/>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery images="2-*.jpg" width="20rem" />}}
|
|
|
|
## Figure
|
|
|
|
Code:
|
|
|
|
```go-text-template
|
|
{{</* paige/gallery */>}}
|
|
{{</* paige/figure caption="Image 1" /*/>}}
|
|
{{</* paige/image src="1-1.jpg" /*/>}}
|
|
{{</* /paige/figure */>}}
|
|
{{</* paige/figure caption="Image 2" /*/>}}
|
|
{{</* paige/image src="2-2.jpg" /*/>}}
|
|
{{</* /paige/figure */>}}
|
|
{{</* paige/figure caption="Image 3" /*/>}}
|
|
{{</* paige/image src="2-3.jpg" /*/>}}
|
|
{{</* /paige/figure */>}}
|
|
{{</* paige/figure caption="Image 4" /*/>}}
|
|
{{</* paige/image src="3-4.jpg" /*/>}}
|
|
{{</* /paige/figure */>}}
|
|
{{</* /paige/gallery */>}}
|
|
```
|
|
|
|
Result:
|
|
|
|
{{< paige/gallery >}}
|
|
{{< paige/figure caption="Image 1" >}}
|
|
{{< paige/image src="1-1.jpg" >}}
|
|
{{< /paige/figure >}}
|
|
{{< paige/figure caption="Image 2" >}}
|
|
{{< paige/image src="2-2.jpg" >}}
|
|
{{< /paige/figure >}}
|
|
{{< paige/figure caption="Image 3" >}}
|
|
{{< paige/image src="2-3.jpg" >}}
|
|
{{< /paige/figure >}}
|
|
{{< paige/figure caption="Image 4" >}}
|
|
{{< paige/image src="3-4.jpg" >}}
|
|
{{< /paige/figure >}}
|
|
{{< /paige/gallery >}}
|
|
|
|
<p class="text-center">Photos by <a href="https://unsplash.com/@photos_by_lanty">Lanty</a>.</p>
|