15 lines
305 B
HTML
15 lines
305 B
HTML
{{- /*
|
|
Displays foreign text.
|
|
|
|
@params original The text in the original language.
|
|
@params lang The language code of the original language.
|
|
@params translation The text in the parent container's language.
|
|
*/
|
|
-}}
|
|
|
|
|
|
<i
|
|
lang="{{ .lang }}"
|
|
title="{{ .translation }}"
|
|
>{{ .original }}</i
|
|
>
|