Update example HTML to include links to larger images to display via Magnific Popup script

Fixes #21
This commit is contained in:
Michael Rose 2014-02-25 15:37:30 -05:00
parent 56de806fa2
commit a94ad3e18d

View file

@ -22,9 +22,9 @@ Apply the `half` class like so to display two images side by side that share the
{% highlight html %}
<figure class="half">
<img src="/images/image-filename-1.jpg">
<img src="/images/image-filename-2.jpg">
<figcaption>Caption describing these two images.</figcaption>
<a href="{{ site.url }}/images/image-filename-1-large.jpg"><img src="{{ site.url }}/images/image-filename-1.jpg"></a>
<a href="{{ site.url }}/images/image-filename-2-large.jpg"><img src="{{ site.url }}/images/image-filename-2.jpg"></a>
<figcaption>Caption describing these two images.</figcaption>
</figure>
{% endhighlight %}