2021-05-11 14:37:36 -04:00
{% assign data = include.data[1] %}
2021-05-11 15:08:21 -04:00
< th data-value = "{{ data.title }}" class = "align-middle" >
2021-05-11 14:37:36 -04:00
< a href = "{{ data.homepage }}" > {{ data.title }}< / a >
2021-05-11 15:08:21 -04:00
< / th >
2021-09-15 12:56:14 -04:00
< td class = "text-nowrap" > {%- if data.anycast -%}< strong class = "text-green-500" > Anycast{% if data.anycast contains 'https://' %} (< a href = "{{ data.anycast }}" > Map< / a > ){%- endif -%}< / strong > {%- endif -%}
2021-05-11 14:37:36 -04:00
< ul class = "list-unstyled mb-0" > {%- for location in data.locations -%}
2021-09-15 12:56:14 -04:00
< li > {%- include country.html cc=location -%} {%- if forloop.first == true and data.anycast -%}< span data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = 'Service is incorporated or otherwise associated with this jurisdiction, however Anycast DNS providers may utilize many server providers in various regions worldwide.' class = "fad fa-info-circle" > < / span > {%- endif -%}< / li >
2021-05-11 14:37:36 -04:00
{%- endfor -%}< / ul >
< / td >
< td >
{% if data.privacy_policy.link %}< a
{% if data.privacy_policy.tooltip %}data-bs-toggle="tooltip" data-bs-placement="bottom" title='{{ data.privacy_policy.tooltip | escape }}'
{% endif %}href="{{ data.privacy_policy.link }}">
< span class = "fad fa-external-link" > < / span >
< / a > {% else %}
< span data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = '{{ data.privacy_policy.tooltip | escape }}' class = "fad fa-info-circle" > < / span > {% endif %}
< / td >
< td > {% if data.type.link %}< a
{% if data.type.tooltip %}data-bs-toggle="tooltip" data-bs-placement="bottom" title='{{ data.type.tooltip | escape }}'
{% endif %}href="{{ data.type.link }}">{{ data.type.name }}< / a >
{% else %}{{ data.type.name }}{% endif %}
< / td >
< td > < ul class = "list-unstyled mb-0" > {%- for protocol in data.protocols -%}
< li > {{ protocol.name }}{% if protocol.tooltip %}
< span data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = '{{ protocol.tooltip | escape }}' class = "fad fa-info-circle" > < / span >
{% endif %}< / li > {%- endfor -%}< / ul >
< / td >
{% if data.logs.policy %}< td class = "table-{{ data.logs.color | escape | default: 'warning' }}" > < span class = "text-nowrap" > {% if data.logs.link %}
< a href = "{{ data.logs.link }}" { % else % } < span { % endif % }
{% if data.logs.tooltip %}data-bs-toggle="tooltip" data-bs-placement="bottom" title='{{ data.logs.tooltip | escape }}'{% endif %}
>{{ data.logs.text | default: 'Yes' }}{% unless data.logs.link %}{% if data.logs.tooltip %} < span class = "fad fa-info-circle" > < / span > {% endif %}{% endunless %}< /{%- if data.logs.link -%}a{%- else -%}span{%- endif -%}>
< / span > {% else %}< td class = "table-success" > No{% endif %}
< / td >
< td
2021-05-11 15:08:21 -04:00
{% unless data.dnssec %}data-value="No" class="table-danger">< span title = "Does not validate DNSSEC" aria-hidden = "true" class = "fad text-red fa-times-circle" > < / span > < span class = "visually-hidden" > No< / span > {% else %}
data-value="Yes" class="table-success">< span title = "Validates DNSSEC" aria-hidden = "true" class = "fad text-green fa-check-square" > < / span > < span class = "visually-hidden" > Yes< / span > {% endunless %}
2021-05-11 14:37:36 -04:00
< / td >
< td
2021-05-11 15:08:21 -04:00
{% unless data.qname_minimization %}data-value="No" class="table-danger">< span title = "Does not perform QNAME Minimization" aria-hidden = "true" class = "fad text-red fa-times-circle" > < / span > < span class = "visually-hidden" > No< / span > {% else %}
data-value="Yes" class="table-success">< span title = "Performs QNAME Minimization" aria-hidden = "true" class = "fad text-green fa-check-square" > < / span > < span class = "visually-hidden" > Yes< / span > {% endunless %}
2021-05-11 14:37:36 -04:00
< / td >
< td >
{{ data.filtering | escape | default: '< em > Unknown?< / em > ' }}
< / td >
< td >
{% if data.source %}< a href = "{{ data.source }}" >
< span class = "fad fa-external-link" > < / span >
< / a > {% endif %}
< / td >
< td >
< ul class = "list-unstyled mb-0" > {%- for provider in data.providers -%}
< li class = "text-nowrap" > {% if provider.link %}< a href = "{{ provider.link }}" > {{ provider.name | escape }}< / a > {% else %}{{ provider.name | escape }}{% endif %}< / li >
{%- endfor -%}< / ul >
< / td >