Files
vanilla-hugo/layouts/_partials/linerangestr.html
2026-05-19 17:55:22 -07:00

10 lines
244 B
HTML

{{- $comment := "" -}}
{{- if eq .from .to -}}
{{- $comment = i18n "lineX" .to -}}
{{- else if eq .from 0 -}}
{{- $comment = i18n "aroundLineX" .to -}}
{{- else -}}
{{- $comment = i18n "linesXThroughY" . -}}
{{- end -}}
{{- return $comment -}}