{{- /* Displays an organisation's title. @params organisation The organisation to display. @params site_redact The site-level redaction display settings. */ -}} {{ $is_redacted := .organisation.Params.redact }} {{ $is_site_show_redacted := eq .site_redact "show" }} {{ $is_site_black_redacted := eq .site_redact "black" }} {{ $is_hidden := and $is_redacted ( not $is_site_show_redacted ) }} {{- if $is_hidden -}} {{- if $is_site_black_redacted -}}
  • {{- partialCached "redact-black.html" . -}}
  • {{- end -}} {{- else -}}
  • {{ if ( .organisation.Params.markup_title ) }} {{ .organisation.Params.markup_title | safeHTML }} {{ else if ( .organisation.Params.titleLang ) }} {{ partial "text/foreign-text.html" ( dict "original" .organisation.Title "lang" .organisation.Params.titleLang "translation" .organisation.Params.titleTrans ) }} {{ else }} {{ .organisation.Title }} {{ end }}
  • {{- end -}}