Improve gallery include variable names

This commit is contained in:
Michael Rose 2016-03-05 21:29:08 -05:00
parent 7c77274567
commit 8e838e1062
2 changed files with 38 additions and 38 deletions

View file

@ -18,28 +18,28 @@
<figure class="{{ gallery-layout }}">
{% for img in gallery %}
{% if img.large %}
{% if img.url %}
<a href=
{% if img.large contains "http" %}
"{{ img.large }}"
{% if img.url contains "http" %}
"{{ img.url }}"
{% else %}
"{{ img.large | prepend: "/images/" | prepend: absurl }}"
"{{ img.url | prepend: "/images/" | prepend: absurl }}"
{% endif %}
>
<img src=
{% if img.thumb contains "http" %}
"{{ img.thumb }}"
{% if img.image_path contains "http" %}
"{{ img.image_path }}"
{% else %}
"{{ img.thumb | prepend: "/images/" | prepend: absurl }}"
"{{ img.image_path | prepend: "/images/" | prepend: absurl }}"
{% endif %}
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
</a>
{% else %}
<img src=
{% if img.thumb contains "http" %}
"{{ img.thumb }}"
{% if img.image_path contains "http" %}
"{{ img.image_path }}"
{% else %}
"{{ img.thumb | prepend: "/images/" | prepend: absurl }}"
"{{ img.image_path | prepend: "/images/" | prepend: absurl }}"
{% endif %}
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
{% endif %}

View file

@ -7,29 +7,29 @@ tags:
- Post Formats
- tiled
gallery:
- large: unsplash-gallery-image-1.jpg
thumb: unsplash-gallery-image-1-th.jpg
- url: unsplash-gallery-image-1.jpg
image_path: unsplash-gallery-image-1-th.jpg
alt: "placeholder image 1"
- large: unsplash-gallery-image-2.jpg
thumb: unsplash-gallery-image-2-th.jpg
- url: unsplash-gallery-image-2.jpg
image_path: unsplash-gallery-image-2-th.jpg
alt: "placeholder image 2"
- large: unsplash-gallery-image-3.jpg
thumb: unsplash-gallery-image-3-th.jpg
- url: unsplash-gallery-image-3.jpg
image_path: unsplash-gallery-image-3-th.jpg
alt: "placeholder image 3"
gallery2:
- large: https://flic.kr/p/8a6Ven
thumb: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
- url: https://flic.kr/p/8a6Ven
image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
alt: "Black and grays with a hint of green"
- large: https://flic.kr/p/8a738X
thumb: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
- url: https://flic.kr/p/8a738X
image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
alt: "Made for open text placement"
- large: https://flic.kr/p/8a6VXP
thumb: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
- url: https://flic.kr/p/8a6VXP
image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
alt: "Fog in the trees"
gallery3:
- thumb: unsplash-gallery-image-2-th.jpg
- image_path: unsplash-gallery-image-2-th.jpg
alt: "placeholder image 2"
- thumb: unsplash-gallery-image-4-th.jpg
- image_path: unsplash-gallery-image-4-th.jpg
alt: "placeholder image 4"
---
These are gallery tests for image wrapped in `<figure>` elements.
@ -38,17 +38,17 @@ To place a gallery add the necessary YAML Front Matter:
```yaml
gallery:
- large: unsplash-gallery-image-1.jpg
thumb: unsplash-gallery-image-1-th.jpg
- url: unsplash-gallery-image-1.jpg
image_path: unsplash-gallery-image-1-th.jpg
alt: "placeholder image 1"
- large: unsplash-gallery-image-2.jpg
thumb: unsplash-gallery-image-2-th.jpg
- url: unsplash-gallery-image-2.jpg
image_path: unsplash-gallery-image-2-th.jpg
alt: "placeholder image 2"
- large: unsplash-gallery-image-3.jpg
thumb: unsplash-gallery-image-3-th.jpg
- url: unsplash-gallery-image-3.jpg
image_path: unsplash-gallery-image-3-th.jpg
alt: "placeholder image 3"
- large: unsplash-gallery-image-4.jpg
thumb: unsplash-gallery-image-4-th.jpg
- url: unsplash-gallery-image-4.jpg
image_path: unsplash-gallery-image-4-th.jpg
alt: "placeholder image 4"
```
@ -66,14 +66,14 @@ Here comes another gallery, this time set the `id` to match 2nd gallery hash in
```yaml
gallery2:
- large: https://flic.kr/p/8a6Ven
thumb: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
- url: https://flic.kr/p/8a6Ven
image_path: https://farm2.staticflickr.com/1272/4697500467_8294dac099_q.jpg
alt: "Black and grays with a hint of green"
- large: https://flic.kr/p/8a738X
thumb: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
- url: https://flic.kr/p/8a738X
image_path: https://farm5.staticflickr.com/4029/4697523701_249e93ba23_q.jpg
alt: "Made for open text placement"
- large: https://flic.kr/p/8a6VXP
thumb: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
- url: https://flic.kr/p/8a6VXP
image_path: https://farm5.staticflickr.com/4046/4697502929_72c612c636_q.jpg
alt: "Fog in the trees"
```