1
1
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2026-05-25 04:41:28 +00:00
Files
privacyguides.org/layouts/_partials/dpa-directory/cell.html
T

10 lines
259 B
HTML
Raw Normal View History

2026-05-19 00:46:19 -05:00
{{- /*
Renders a table cell value: plain text (e.g. TBA) or a link with label + url.
Expects dict: label, url, text (only one style used).
*/ -}}
{{- if .url -}}
<a href="{{ .url }}" target="_blank">{{ .label }}</a>
{{- else -}}
{{- .text -}}
{{- end -}}