Welcome to mirror list, hosted at ThFree Co, Russian Federation.

share.html « partials « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bccc6e132c23ce263691ddd5f7b9e3501336378c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div style="display: flex; justify-content: flex-end">
  <div class="share-links">
    {{ $url := printf "%s" .URL | absLangURL }}
    <a
      class="icon active"
      href="mailto:?subject={{ print .Title ` by ` .Site.Params.author }}&amp;body={{ $url }}"
      target="_self"
      rel="noopener"
      aria-label="share by email"
      ><i class="bi bi-envelope-fill"></i
    ></a>
    <a
      class="icon active"
      href="https://facebook.com/sharer/sharer.php?u={{ $url }}"
      target="_blank"
      rel="noopener"
      aria-label="share on facebook"
      ><i class="bi bi-facebook"></i
    ></a>
    <a
      class="icon active"
      href="https://twitter.com/intent/tweet/?text={{ print .Title ` by ` .Site.Params.author }}&amp;url={{ $url }}"
      target="_blank"
      rel="noopener"
      aria-label="share on twitter"
      ><i class="bi bi-twitter"></i
    ></a>
    <a
      class="icon active"
      href="https://www.linkedin.com/sharing/share-offsite/?url={{ $url }}"
      target="_blank"
      rel="noopener"
      aria-label="share on twitter"
      ><i class="bi bi-linkedin"></i
    ></a>
  </div>
</div>