mirror of
https://github.com/codeninjasuk/codeninjasuk.github.io.git
synced 2024-11-26 01:07:53 -05:00
17 lines
No EOL
346 B
Markdown
17 lines
No EOL
346 B
Markdown
---
|
|
title: "Post: Image (Caption)"
|
|
categories:
|
|
- Post Formats
|
|
tags:
|
|
- image
|
|
- Post Formats
|
|
---
|
|
|
|
{% capture fig_img %}
|
|
![Foo]({{ '/assets/images/unsplash-gallery-image-3.jpg' | relative_url }})
|
|
{% endcapture %}
|
|
|
|
<figure>
|
|
{{ fig_img | markdownify | remove: "<p>" | remove: "</p>" }}
|
|
<figcaption>Photo from Unsplash.</figcaption>
|
|
</figure> |