Sha256: 0480071ce0ae1fd1ccca7582316f19bfc0b8c447a42e3bb091ad3780ab6c8011

Contents?: true

Size: 854 Bytes

Versions: 5

Compression:

Stored size: 854 Bytes

Contents

{% capture align %}align-{{ include.align | default: "center" }}{% endcapture %}

{%- if include.src -%}
  {% assign src = include.src %}
{%- elsif include.name -%}
  {% capture src %}assets/img/posts/{{ page.title | slugify }}/{{ include.name }}{% endcapture %}
{%- endif -%}

{% if include.caption %}
<figure class="{{ align }}">
  <img class="{{ align }}" src="{{ src | absolute_url }}" alt="{{ include.caption }}" {% if include.width %}width="{{ include.width }}"{% endif %} {% if include.height %}height="{{ include.height }}"{% endif %}/>
  <figcaption class="{{ align }}">{{ include.caption }}</figcaption>
</figure>
{% else %}
<img class="{{ align }}" src="{{ src | absolute_url }}" alt="{{ include.alt }}" {% if include.width %}width="{{ include.width }}"{% endif %} {% if include.height %}height="{{ include.height }}"{% endif %}/>
{% endif %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-theme-hamilton-2.0.0 _includes/image.html
jekyll-theme-hamilton-1.4.4 _includes/image.html
jekyll-theme-hamilton-1.4.3 _includes/image.html
jekyll-theme-hamilton-1.4.2 _includes/image.html
jekyll-theme-hamilton-1.4.1 _includes/image.html