Sha256: ae693a8e25408e7d993e8dc84a08096f99ef61afb22bedf6a8b6cd3948f6c6c9

Contents?: true

Size: 805 Bytes

Versions: 10

Compression:

Stored size: 805 Bytes

Contents

{%- comment -%}

componente de imagen que tiene un link [url]

@param :src [String]
@param :href [String] El link
@param :width [Integer] Ancho de la imagen
@param :alt [String] El alt de la imagen
@param :a_class [String] Clases para a
@param :component_class [String] Clases para el componente
{%- endcomment -%}

<div
	class="position-relative {{ include.component_class }}">
	<a class="stretched-link"
		 href="{{ include.href | uri_escape }}"
		 {{ include.href | start_with: "https://" | value_if: 'rel="noopener" target="_blank"' }}
		 {{ include.href | start_with: "http://" | value_if: 'rel="noopener" target="_blank"' }}>
		 <span class="sr-only">{{ include.alt }}</span>
	 </a>
  {% include picture.html src=include.src width=include.width alt=include.alt img_class=include.img_class %}
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
compost-jekyll-theme-0.1.9 _includes/image_with_link.html
compost-jekyll-theme-0.1.8 _includes/image_with_link.html
compost-jekyll-theme-0.1.7 _includes/image_with_link.html
compost-jekyll-theme-0.1.6 _includes/image_with_link.html
compost-jekyll-theme-0.1.5 _includes/image_with_link.html
compost-jekyll-theme-0.1.4 _includes/image_with_link.html
compost-jekyll-theme-0.1.3 _includes/image_with_link.html
compost-jekyll-theme-0.1.2 _includes/image_with_link.html
compost-jekyll-theme-0.1.1 _includes/image_with_link.html
compost-jekyll-theme-0.1.0 _includes/image_with_link.html