1234567891011121314151617181920 |
- {{ if and site.Params.sharing (ne .Params.share false) }}
- <div class="share-box">
- <ul class="share">
- {{ range where site.Data.page_sharer.buttons "enable" true }}
- {{ $pack := or .icon_pack "fas" }}
- {{ $pack_prefix := $pack }}
- {{ if in (slice "fab" "fas" "far" "fal") $pack }}
- {{ $pack_prefix = "fa" }}
- {{ end }}
- {{ $link := replace .url "{url}" ($.Permalink | htmlEscape) }}
- {{ $link = replace $link "{title}" ($.Title | htmlEscape) }}
- <li>
- <a href="{{$link|safeURL}}" target="_blank" rel="noopener" class="share-btn-{{.id}}" aria-label="{{.icon}}">
- <i class="{{$pack}} {{$pack_prefix}}-{{.icon}}"></i>
- </a>
- </li>
- {{ end }}
- </ul>
- </div>
- {{ end }}
|