Sha256: 513f3880f357651b16481044f928f99ee1411bf119a0d4dc81f6944733f86d0f

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

<!-- Post sharing snippet -->

<div class="share-wrapper d-flex align-items-center">
  <span class="share-label text-muted me-1">{{ site.data.locales[include.lang].post.share }}</span>
  <span class="share-icons">
    {% capture title %}{{ page.title }} - {{ site.title }}{% endcapture %}
    {% assign title = title | uri_escape %}
    {% assign url = page.url | absolute_url | url_encode %}

    {% for share in site.data.share.platforms %}
      {% assign link = share.link | replace: 'TITLE', title | replace: 'URL', url %}
      <a
        href="{{ link }}"
        data-bs-toggle="tooltip"
        data-bs-placement="top"
        title="{{ share.type }}"
        target="_blank"
        rel="noopener"
        aria-label="{{ share.type }}"
      >
        <i class="fa-fw {{ share.icon }}"></i>
      </a>
    {% endfor %}

    <button
      id="copy-link"
      aria-label="Copy link"
      class="btn small"
      data-bs-toggle="tooltip"
      data-bs-placement="top"
      title="{{ site.data.locales[include.lang].post.button.share_link.title }}"
      data-title-succeed="{{ site.data.locales[include.lang].post.button.share_link.succeed }}"
    >
      <i class="fa-fw fas fa-link pe-none"></i>
    </button>
  </span>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-6.2.3 _includes/post-sharing.html
jekyll-theme-chirpy-6.2.2 _includes/post-sharing.html
jekyll-theme-chirpy-6.2.1 _includes/post-sharing.html
jekyll-theme-chirpy-6.2.0 _includes/post-sharing.html