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: 3b84c3534bf561c282d38e5dbafb6bf87491af26 (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
38
39
40
41
42
43
44
<div
  class="share-links"
  style="
    display: flex;
    margin-left: 1em;
    align-items: center;
    width: 140px;
    justify-content: space-between;
  "
>
  {{ $url := printf "%s" .URL | absLangURL }}
  <a
    class="primary-icon"
    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"></i
  ></a>
  <a
    class="primary-icon"
    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="primary-icon"
    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="primary-icon"
    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>