Enable auto keying for cardv2 contents
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
<div class="card-header text-white bg-secondary">
|
||||
<h3 class="h5">
|
||||
{% if include.badges %}
|
||||
<span class="mr-2">{{ include.title }}</span>
|
||||
<span class="mr-2">{{ include.title | translate_text }}</span>
|
||||
{% assign badges = include.badges | split:"|" %}
|
||||
{% for badge in badges %}
|
||||
{% assign badge_data = badge | split:":" %}
|
||||
@ -14,15 +14,15 @@
|
||||
class="badge badge-{{color}}"
|
||||
{% if tooltip %}
|
||||
data-toggle="tooltip"
|
||||
title="{{ tooltip }}"
|
||||
> {{text}} {{ help_icon }}
|
||||
title="{{ tooltip | translate_text }}"
|
||||
> {{text | translate_text}} {{ help_icon }}
|
||||
{% else %}
|
||||
> {{text}}
|
||||
> {{text | translate_text}}
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
{{ include.title }}
|
||||
{{ include.title | translate_text }}
|
||||
{% endif %}
|
||||
</h3>
|
||||
</div>
|
||||
@ -36,9 +36,9 @@
|
||||
height="120"
|
||||
width="120"
|
||||
class="panel-pic"
|
||||
alt="{{include.title}}"
|
||||
alt="{{include.title | translate_text }}"
|
||||
>
|
||||
{{ include.description }}
|
||||
{{ include.description | translate_text }}
|
||||
{% if include.labels %}
|
||||
{% assign labels = include.labels | split:"|" %}
|
||||
{% for label in labels %}
|
||||
@ -51,10 +51,10 @@
|
||||
class="badge badge-{{color}}"
|
||||
{% if tooltip %}
|
||||
data-toggle="tooltip"
|
||||
title="{{ tooltip }}"
|
||||
> {{text}} {{ help_icon }}
|
||||
title="{{ tooltip | translate_text }}"
|
||||
> {{text | translate_text}} {{ help_icon }}
|
||||
{% else %}
|
||||
> {{text}}
|
||||
> {{text | translate_text}}
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endfor %}
|
||||
@ -85,7 +85,7 @@
|
||||
class="hover-text-decoration-none mt-1 mr-1"
|
||||
data-toggle="tooltip"
|
||||
data-placement="bottom"
|
||||
data-original-title="Requires specific software to access: torproject.org">
|
||||
data-original-title="{% t Requires specific software to access: torproject.org %}">
|
||||
<span class="ptio-tor btn-tor btn-icon"></span>
|
||||
</a>
|
||||
{% endif %}
|
||||
@ -96,7 +96,7 @@
|
||||
class="hover-text-decoration-none mt-1 mr-1"
|
||||
data-toggle="tooltip"
|
||||
data-placement="bottom"
|
||||
data-original-title="Requires specific software to access: geti2p.net">
|
||||
data-original-title="{% t Requires specific software to access: geti2p.net %}">
|
||||
<span class="ptio-i2p-garlic btn-secondary btn-icon"></span>
|
||||
</a>
|
||||
{% endif %}
|
||||
|
@ -6,8 +6,7 @@
|
||||
{% include cardv2.html
|
||||
title="Firefox"
|
||||
image="/assets/img/tools/Firefox.png"
|
||||
description='Firefox is fast, reliable, open-source, and respects your privacy. Don\'t forget to adjust the settings according to our
|
||||
recommendations: <a href="#webrtc"><i class="fas fa-link"></i> WebRTC</a> and <a href="#about_config"><i class="fas fa-link"></i> about:config</a> and get the <a href="#addons"><i class="fas fa-link"></i> privacy add-ons</a>.'
|
||||
description='Firefox is fast, reliable, open-source, and respects your privacy. Don\'t forget to adjust the settings according to our recommendations: <a href="#webrtc"><i class="fas fa-link"></i> WebRTC</a> and <a href="#about_config"><i class="fas fa-link"></i> about:config</a> and get the <a href="#addons"><i class="fas fa-link"></i> privacy add-ons</a>.'
|
||||
website="https://firefox.com"
|
||||
forum="https://forum.privacytools.io/t/discussion-firefox/279"
|
||||
source="https://hg.mozilla.org/mozilla-central/"
|
||||
|
@ -3,8 +3,7 @@
|
||||
{% include cardv2.html
|
||||
title="Bitmessage"
|
||||
image="/assets/img/tools/Bitmessage.png"
|
||||
description="Bitmessage is a P2P communications protocol used to send encrypted messages to another person or to many subscribers. It is decentralized and trustless,
|
||||
meaning that you need not inherently trust any entities like root certificate authorities. It uses strong authentication which means that the sender of a message cannot be spoofed, and it aims to hide \"non-content\" data."
|
||||
description="Bitmessage is a P2P communications protocol used to send encrypted messages to another person or to many subscribers. It is decentralized and trustless, meaning that you need not inherently trust any entities like root certificate authorities. It uses strong authentication which means that the sender of a message cannot be spoofed, and it aims to hide \"non-content\" data."
|
||||
website="https://bitmessage.org/"
|
||||
forum="https://forum.privacytools.io/t/discussion-bitmessage/661"
|
||||
github="https://github.com/Bitmessage/PyBitmessage"
|
||||
|
Reference in New Issue
Block a user