13 lines
241 B
HTML
Raw Normal View History

2022-08-26 15:15:25 +08:00
{{ if .IsNamedParams }}
{{ with .Get "text" }}
<hr data-content='{{ . }}' />
{{ else }}
<hr />
{{ end }}
{{ else }}
{{ with .Get 0 }}
<hr data-content="{{ . }}" />
{{ else }}
<hr />
{{ end }}
{{ end }}