Sha256: 786297cb36f404bf3d593867af8a774a6e11859be1c80aa9666c9fd61e04b51f

Contents?: true

Size: 1.44 KB

Versions: 31

Compression:

Stored size: 1.44 KB

Contents

{%- comment -%}

Los botones de navegaciĆ³n de los posts

@param :src_previous [String] El src de imagen de Previous
@param :src_next [String] El src de imagen de Next
@param :src_home [String] El src de imagen de Home
@param :href_previous [String] El link de Previous
@param :href_home [String] El link de Home
@param :href_next [String] El link de Next
@param :alt_previous [String] El alt de Previous
@param :alt_next [String] El alt de Next
{%- endcomment -%}

{% assign previous_class = include.href_previous | blank | value_if: "invisible" %}
{% assign next_class = include.href_next | blank | value_if: "invisible" %}

<div class="d-flex align-items-center">
	<div
		class="mt-3 transform-scale-n8 transform-scale-hover-1"
		{% unless previous_class %}
			aria-hidden="true"
		{% endunless %}>
		{% include image_with_link.html src=include.src_previous alt=include.alt_previous width=51 href=include.href_previous img_class="px-2" component_class=previous_class %}
	</div>

	<div
		class="transform-scale-n8 transform-scale-hover-1">
		{% include image_with_link.html src=include.src_home alt=site.i18n.home width=79 href=include.href_home img_class="px-2" %}
	</div>

	<div
		class="mt-3 transform-scale-n8 transform-scale-hover-1"
		{% unless next_class %}
			aria-hidden="true"
		{% endunless %}>
		{% include image_with_link.html src=include.src_next alt=include.alt_next width=51 href=include.href_next img_class="px-2" component_class=next_class %}
	</div>
</div>

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
compost-jekyll-theme-0.3.8 _includes/navigation_post.html
compost-jekyll-theme-0.3.7 _includes/navigation_post.html
compost-jekyll-theme-0.3.6 _includes/navigation_post.html
compost-jekyll-theme-0.3.5 _includes/navigation_post.html
compost-jekyll-theme-0.3.4 _includes/navigation_post.html
compost-jekyll-theme-0.3.3 _includes/navigation_post.html
compost-jekyll-theme-0.3.2 _includes/navigation_post.html
compost-jekyll-theme-0.3.1 _includes/navigation_post.html
compost-jekyll-theme-0.3.0 _includes/navigation_post.html
compost-jekyll-theme-0.2.3 _includes/navigation_post.html
compost-jekyll-theme-0.2.2 _includes/navigation_post.html
compost-jekyll-theme-0.2.1 _includes/navigation_post.html
compost-jekyll-theme-0.1.18 _includes/navigation_post.html
compost-jekyll-theme-0.1.17 _includes/navigation_post.html
compost-jekyll-theme-0.1.16 _includes/navigation_post.html
compost-jekyll-theme-0.1.15 _includes/navigation_post.html
compost-jekyll-theme-0.1.14 _includes/navigation_post.html
compost-jekyll-theme-0.1.13 _includes/navigation_post.html
compost-jekyll-theme-0.1.12 _includes/navigation_post.html
compost-jekyll-theme-0.1.11 _includes/navigation_post.html