mirror of
https://github.com/naoufalzerai/zerai.xyz.git
synced 2025-11-09 15:05:55 +00:00
19 lines
333 B
HTML
19 lines
333 B
HTML
{{ $title := "Diagram" }}
|
|
{{ if .IsNamedParams }}
|
|
{{ with .Get "title" }}
|
|
{{ $title = . }}
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ with .Get 0 }}
|
|
{{ $title = . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<figure>
|
|
<img
|
|
src='https://g.gravizo.com/svg?{{ .Inner }}'
|
|
alt='{{ $title }}'
|
|
/>
|
|
<figcaption>{{ $title }}</figcaption>
|
|
</figure>
|