Welcome to mirror list, hosted at ThFree Co, Russian Federation.

figure-zoom-sample.md « posts « content « exampleSite - github.com/mismith0227/hugo_theme_pickles.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2aaa684e0d4112c978c19c26cf2a3e4cc26aec45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
author: "Dave Kerr"
date: 2021-04-30
linktitle: Figure Zoom Sample
title: Figure Zoom Sample
weight: 10
---

The `figure-zoom` shortcode is a version of the [standard `figure` shortcode](https://gohugo.io/content-management/shortcodes/#figure) which also incorporates [Zoom.js](https://github.com/fat/zoom.js/).

Here is how the markdown for the shortcode is used:

```
{{</* figure-zoom src="/images/kitten.jpg"
    title="It's a Kitten!"
    caption="This is a kitten, what else needs to be said?"
*/>}}
```

It will be shown like this - click on the image to zoom in:

{{< figure-zoom src="/images/kitten.jpg"
    title="It's a Kitten!"
    caption="This is a kitten, what else needs to be said?"
>}}