aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/menu-datetime.html
blob: 5b2acf1734dc1eb03f1a80e0e5dbb2a6bf42917d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{- $href := print .Permalink -}}

<micro-metadata-datetime>
  <a href="{{ $href }}">
    {{- safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/calendar.svg")) -}}
    <time
      data-type="localDate"
      datetime="{{ .Date | time.Format "2006-01-02T15:04:05Z" }}"
    >
      {{ .Date | time.Format "Jan 2 2006" -}}
    </time>
  </a>
  <a href="{{ $href }}">
    {{- safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/clock.svg")) -}}
    <time
      data-type="localTime"
      datetime="{{ .Date | time.Format "2006-01-02T15:04:05Z" }}"
    >
      {{ .Date | time.Format "15:04 MST" -}}
    </time>
  </a>
</micro-metadata-datetime>