mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-07-29 06:41:03 +00:00
Add worth mentioning and anti-recommended browsers to collection
This commit is contained in:
2
_includes/anti-recommendation.html
Normal file
2
_includes/anti-recommendation.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3 class="h5"><strike>{{ post.name }}</strike></h3>
|
||||
{{ post.excerpt }}
|
20
_includes/badge.html
Normal file
20
_includes/badge.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% if include.link %}
|
||||
<a
|
||||
href="{{ include.link }}" class="badge badge-{{ include.color | default: "info" }}"
|
||||
{% if include.tooltip %}
|
||||
data-toggle="tooltip"
|
||||
title="{{ include.tooltip }}"><i class="{{ include.icon | default: "far fa-question-circle"}}"></i> {{ include.text }}
|
||||
{% else %}><i class="{{ include.icon | default: "fas fa-external-link-alt"}}"></i> {{ include.text }}{% endif %}
|
||||
</a>
|
||||
{% else %}
|
||||
<span
|
||||
class="badge badge-{{ include.color | default: "info" }}"
|
||||
{% if include.tooltip %}
|
||||
data-toggle="tooltip"
|
||||
title="{{ include.tooltip }}"
|
||||
> <i class="{{ include.icon | default: "far fa-question-circle"}}"></i> {{include.text}}
|
||||
{% else %}
|
||||
> {% if include.icon %}<i class="{{ include.icon }}"></i>{% endif %} {{include.text}}
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endif %}
|
@@ -13,7 +13,9 @@
|
||||
{% if post.platform_win %}<a href="{{ post.platform_win }}" class="text-secondary"><i class="fab fa-windows fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.platform_mac %}<a href="{{ post.platform_mac }}" class="text-secondary"><i class="fab fa-apple fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.platform_linux %}<a href="{{ post.platform_linux }}" class="text-secondary"><i class="fab fa-linux fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.platform_bsd %}<a href="{{ post.platform_bsd }}" class="text-secondary"><i class="fab fa-freebsd fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.platform_android %}<a href="{{ post.platform_android }}" class="text-secondary"><i class="fab fa-google-play fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.platform_ios %}<a href="{{ post.platform_ios }}" class="text-secondary"><i class="fab fa-app-store-ios fa-fw h2"></i></a>{% endif %}
|
||||
{% if post.website %}<a href="{{ post.website }}" class="text-secondary"><i class="far fa-globe fa-fw h2"></i></a>{% endif %}
|
||||
</p>
|
||||
<p><a href="{{ post.url }}" class="btn btn-primary mt-2">More Information</a></p>
|
||||
</div>
|
2
_includes/worth-mentioning.html
Normal file
2
_includes/worth-mentioning.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3 class="h5">{{ post.name }}</h3>
|
||||
{{ post.excerpt }}
|
Reference in New Issue
Block a user