~xdavidwu/xdavidwu.link

b1421824f8282c6b155bccb4b2fb643c7802fa8e — Michael Rose 10 years ago a94ad3e
Remove {{ site.url }} reference to simplify example
1 files changed, 2 insertions(+), 2 deletions(-)

M _posts/2013-05-22-sample-post-images.md
M _posts/2013-05-22-sample-post-images.md => _posts/2013-05-22-sample-post-images.md +2 -2
@@ 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 %}