{{- /* For use with 7 */}} {{- /* Get Policy Arguments. */}} {{- $TORRENT := or (.Get "torrent") "N/a" }} {{- $SMTP := or (.Get "smtp") "N/a" }} {{- $ADULT_CONTENT := or (.Get "adult_content") "N/a" }} {{- $TOR := or (.Get "tor") "N/a" }} {{- $VPN := or (.Get "vpn") "N/a" }} {{- $policy := slice (dict "type" "Torrent" "value" $TORRENT) (dict "type" "SMTP(Port 25)" "value" $SMTP) (dict "type" "Adult Content" "value" $ADULT_CONTENT) (dict "type" "Tor Network" "value" $TOR) (dict "type" "VPN" "value" $VPN) }}

Policy

{{- range $policy }}
{{ .type }}: {{ .value | safeHTML }}
{{- end }}
{{ if ne .Inner "" }} {{ .Inner | markdownify }} {{ end }}