mirror of
				https://github.com/privacyguides/privacyguides.org.git
				synced 2025-11-04 13:27:53 +00:00 
			
		
		
		
	Resolves https://github.com/privacytools/privacytools.io/issues/2409, thanks @johnhtodd @arche-dev
		
			
				
	
	
		
			55 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% assign data = include.data[1] %}
 | 
						|
<th data-value="{{ data.title }}" class="align-middle">
 | 
						|
  <a href="{{ data.homepage }}">{{ data.title }}</a>
 | 
						|
</th>
 | 
						|
<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 -%}
 | 
						|
  <ul class="list-unstyled mb-0">{%- for location in data.locations -%}
 | 
						|
  <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>
 | 
						|
  {%- 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
 | 
						|
  {% 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 %}
 | 
						|
</td>
 | 
						|
<td
 | 
						|
  {% 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 %}
 | 
						|
</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>
 |