Remove {{ site.url }} reference to simplify example

This commit is contained in:
Michael Rose 2014-02-25 15:39:30 -05:00
parent a94ad3e18d
commit b1421824f8

View file

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