aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/menu-datetime.html
blob: 20ef50e059a807a8eeed4c1b546ac9b9e496af1c (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 -}}

<meta-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>
</meta-datetime>