Sha256: dfe8f728950106fa7bcf2ffd8185d860995b8d7c684934a1c069036cacd9da93

Contents?: true

Size: 1001 Bytes

Versions: 6

Compression:

Stored size: 1001 Bytes

Contents

{%- assign title = include.title | escape -%}
{%- assign text = include.description | strip_html | escape -%}
{%- assign url = site.url | append: include.url | escape -%}

<input
  data-controller="share"
  data-action="share#share"
  data-share-title-value="{{ title }}"
  data-share-text-value="{{ text }}"
  data-share-url-value="{{ url }}"
  type="checkbox"
  id="share"
  class="toggler"
  autocomplete="off" />

<label class="share btn border" for="share">
  {{ site.i18n.share.text }}
  <i class="fa fa-{{ site.i18n.share.icon }}"></i>

  <div class="share-box toggled d-flex align-items-center justify-content-center">
    <div class="box background-white color-redpink row no-gutters align-items-center justify-content-center p-3">
      {% for share in site.i18n.share.items %}
        <div class="col-4">
          {% include_cached share.html share=share url=include.url title=include.title description=include.description %}
        </div>
      {% endfor %}
    </div>
  </div>
</label>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
observatorio-jekyll-theme-0.1.7 _includes/share_box.html
observatorio-jekyll-theme-0.1.6 _includes/share_box.html
observatorio-jekyll-theme-0.1.5 _includes/share_box.html
observatorio-jekyll-theme-0.1.4 _includes/share_box.html
observatorio-jekyll-theme-0.1.3 _includes/share_box.html
observatorio-jekyll-theme-0.1.2 _includes/share_box.html