aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/_markup/render-codeblock-goat.html
blob: d2d0753954bdcb278a1bfeaf6df17be31608b880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $width   := .Attributes.width   }}
{{ $height  := .Attributes.height  }}
{{ $caption := default "GoAT Diagram" .Attributes.caption }}
<diagram-container>
  {{ with diagrams.Goat .Inner }}
    <svg
      xmlns="http://www.w3.org/2000/svg"
      {{ if or $width $height }}
        {{ with $width }}width="{{ . }}"{{ end }}
        {{ with $height }}height="{{ . }}"{{ end }}
      {{ else }}
        viewBox="0 0 {{ .Width }} {{ .Height }}"
      {{ end }}>
      {{ .Inner }}
    </svg>
  {{ end }}
  <figcaption class="has-text-grey-dark">{{ $caption }}</figcaption>
</diagram-container>