aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/card-meta.html
blob: 43595867d93e7f24e021b64222d31b53d9927faa (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<micro-thumbnail hidden>
  {{ partial "profile-picture.html" . }}
</micro-thumbnail>

<section>
  {{ if or .Weight .Params.Liked .Params.feed }}
    <anchored-entry>
      {{- if .Params.feed -}}
        {{ safeHTML (readFile (print (partial "function-paths-static.html") "/icons/feather/rss.svg")) }}
        <a data-hover
          title="{{ partial "author-user.html" . }}@{{ (urls.Parse .Site.BaseURL).Host }}"
          href="{{ .Site.BaseURL }}/{{ partial "author-user.html" . }}/feeds/#">
            via @{{ partial "author-user.html" . }}
        </a>
      {{- end -}}

      {{ if .Weight }}
      <anchored-pinned>
       {{ safeHTML (readFile (print (partial "function-paths-static.html") "/icons/tabler/pinned.svg")) }}
      </anchored-pinned>
       <span>Pinned</span>
     {{ end }}

      {{ if .Params.Liked }}
      <anchored-liked>
       {{ safeHTML (readFile (print (partial "function-paths-static.html") "/icons/feather/heart.svg")) }}
      </anchored-liked>
       <span>Liked</span>
     {{ end }}

    </anchored-entry>
  {{ end }}

  {{- partial "meta-name.html" . -}}

  &middot; {{ partial "meta-handle.html" . }}

  {{ if .Draft }}
  &middot; {{ partial "meta-draft" . -}}
  {{ end }}

  &middot; {{- partial "meta-read-time.html" . -}}

  &middot; {{- partial "meta-word-count.html" . -}}

  {{ if .Params.Unlisted }}
  &middot; <unlisted-entry title="This message is off the record">
           {{ safeHTML (readFile (print (partial "function-paths-static.html") "/icons/feather/eye-off.svg")) }}
           <span>unlisted</span></unlisted-entry>
  {{ end }}

  &middot; {{- partial "meta-date-time.html" . -}}

  {{- if .ExpiryDate -}}
  &middot; {{- partial "meta-expiry-date.html" . -}}
  {{- end -}}

  &middot; <cite><a title="#{{ partial "card-id.html" . }}" href="#{{ partial "card-id.html" . }}">#id</a></cite>

  {{ if not .ExpiryDate }}
  &middot; {{ partial "meta-source.html" . -}}
  {{- end -}}
</section>