aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/single.html
blob: a32ae010032f9d095524ad3b0adbb109c9fc2070 (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
{{ define "styles" }}
<style>
  {{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
</style>
{{ end }}

{{ define "middle" }}

{{ partial "navigator-middle.html"
  (dict
    "Title"      "Message"
    "Subtitle"   "Single"
    "Icon"       "arrow-left"
    "IconLabel"  "Back"
    "Href"       "/"
    "Id"         "back"
    "Context"    .
  )
}}

<micro-thread>
  {{ .Render "summary" }}
</micro-thread>
{{ end }}

{{ define "right" }}
   {{- partial "navigator-right.html" . -}}
{{ end }}