NEW [WIP] Add localization support with jekyll-simple-i18n #1509

Open
jonah wants to merge 76 commits from i18n-simple into master
3 changed files with 32 additions and 55 deletions
Showing only changes of commit b4cc2cf5e0 - Show all commits

View File

@ -34,7 +34,7 @@
{% elsif include.font %} {% elsif include.font %}
<span class="{{ include.font }} panel-item panel-font" alt="{{ include.title }}"></span> <span class="{{ include.font }} panel-item panel-font" alt="{{ include.title }}"></span>
{% endif %} {% endif %}
{{include.description}} {{include.description | translate_text }}
</p> </p>
<div> <div>
<p> <p>
@ -47,7 +47,7 @@
{% endif %} {% endif %}
</a> </a>
{% elsif include.page %} {% elsif include.page %}
<a class="btn btn-{{include.color}} mb-1" href="{{include.page}}"> <a class="btn btn-{{include.color}} mb-1" href="{{include.page | translate_page}}">
{% if include.moretext %} {% if include.moretext %}
{{include.moretext}} {{include.moretext}}
{% else %} {% else %}

View File

@ -4,76 +4,56 @@
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
<div class="row"> <div class="row">
{% capture providers_title %}{% t Providers %}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture providers_page %}/{% if page.language %}{{ page.language }}/{% endif %}providers/{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture providers_description %}{% t Discover privacy-centric online services, including email providers, VPN operators, DNS administrators, and more!%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% include card.html color="success" {% include card.html color="success"
title=providers_title title="Providers"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="fas fa-server" icon="fas fa-server"
iconcolor="dark" iconcolor="dark"
page=providers_page page="/providers/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=providers_description description="Discover privacy-centric online services, including email providers, VPN operators, DNS administrators, and more!"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
{% capture browsers_title %}{% t Web Browsers %}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture browsers_page %}/{% if page.language %}{{ page.language }}/{% endif %}browsers/{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture browsers_description %}{% t Find a web browser that respects your privacy, and discover how to harden your browser against tracking and leaks.%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% include card.html color="primary" {% include card.html color="primary"
title=browsers_title title="Web Browsers"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="far fa-compass" icon="far fa-compass"
iconcolor="dark" iconcolor="dark"
page=browsers_page page="/browsers/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=browsers_description description="Find a web browser that respects your privacy, and discover how to harden your browser against tracking and leaks."
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
{% capture software_title %}{% t Software %}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture software_page %}/{% if page.language %}{{ page.language }}/{% endif %}software/{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture software_description %}{% t Discover a variety of open source software built to protect your privacy and keep your digital data secure.%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% include card.html color="warning" {% include card.html color="warning"
title=software_title title="Software"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="far fa-window-restore" icon="far fa-window-restore"
iconcolor="dark" iconcolor="dark"
page=software_page page="/software/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=software_description description="Discover a variety of open source software built to protect your privacy and keep your digital data secure."
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
{% capture os_title %}{% t Operating Systems%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture os_page %}/{% if page.language %}{{ page.language }}/{% endif %}operating-systems/{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture os_description %}{% t Find out how your operating system is compromising your privacy, and what simple alternatives exist.%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% include card.html color="info" {% include card.html color="info"
title=os_title title="Operating Systems"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="fas fa-desktop" icon="fas fa-desktop"
iconcolor="dark" iconcolor="dark"
page=os_page page="/operating-systems/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=os_description description="Find out how your operating system is compromising your privacy, and what simple alternatives exist."
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
{% capture services_title %}{% t PrivacyTools Services%}{% endcapture %} {% capture services_title %}{% t %}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture services_page %}/{% if page.language %}{{ page.language }}/{% endif %}services/{% endcapture %} {% capture services_page %}/{% if page.language %}{{ page.language }}/{% endif %}services/{% endcapture %}
{% capture services_description %}{% t The PrivacyTools team is proud to launch a variety of privacy-centric online services, including a Mastodon instance, search engine, and more!%}{% endcapture %} {% capture services_description %}{% t The PrivacyTools team is proud to launch a variety of privacy-centric online services, including a Mastodon instance, search engine, and more!%}{% endcapture %}
{% include card.html color="secondary" {% include card.html color="secondary"
title=services_title title="PrivacyTools Services"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="far fa-eye-slash" icon="far fa-eye-slash"
iconcolor="dark" iconcolor="dark"
page=services_page page="/services/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=services_description description="The PrivacyTools team is proud to launch a variety of privacy-centric online services, including a Mastodon instance, search engine, and more!"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
{% capture donate_title %}{% t Donate%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture donate_page %}/{% if page.language %}{{ page.language }}/{% endif %}donate/{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% capture donate_description %}{% t We can't operate this site without the generous contributions we receive from our viewers. If you love privacy and our website please consider donating.%}{% endcapture %}
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
{% include card.html color="danger" {% include card.html color="danger"
title=donate_title title="Donate"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
icon="fas fa-donate" icon="fas fa-donate"
iconcolor="dark" iconcolor="dark"
page=donate_page page="/donate/"
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
description=donate_description description="We can't operate this site without the generous contributions we receive from our viewers. If you love privacy and our website please consider donating."
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
%} %}
</div> </div>

Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
Review

I wonder if there is a way to incorporate this into the card.html code instead of using captures on every page. Will have to investigate that.

I wonder if there is a way to incorporate this into the `card.html` code instead of using captures on every page. Will have to investigate that.
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510
djoate commented 2019-11-23 22:27:06 +00:00 (Migrated from github.com)
Review
@JonahAragon This is done in https://github.com/privacytoolsIO/privacytools.io/pull/1510

View File

@ -23,33 +23,21 @@ Discover_privacycentric_online_services_including_email_providers_VPN_operators_
Learn_More: | Learn_More: |
Learn More Learn More
Web_Browsers: |
Web Browsers
Find_a_web_browser_that_respects_your_privacy_and_discover_how_to_harden_your_browser_against_tracki: | Find_a_web_browser_that_respects_your_privacy_and_discover_how_to_harden_your_browser_against_tracki: |
Find a web browser that respects your privacy, and discover how to harden your browser against tracking and leaks. Find a web browser that respects your privacy, and discover how to harden your browser against tracking and leaks.
Software: |
Software
Discover_a_variety_of_open_source_software_built_to_protect_your_privacy_and_keep_your_digital_data_s: | Discover_a_variety_of_open_source_software_built_to_protect_your_privacy_and_keep_your_digital_data_s: |
Discover a variety of open source software built to protect your privacy and keep your digital data secure. Discover a variety of open source software built to protect your privacy and keep your digital data secure.
Operating_Systems: |
Operating Systems
Find_out_how_your_operating_system_is_compromising_your_privacy_and_what_simple_alternatives_exist.: | Find_out_how_your_operating_system_is_compromising_your_privacy_and_what_simple_alternatives_exist.: |
Find out how your operating system is compromising your privacy, and what simple alternatives exist. Find out how your operating system is compromising your privacy, and what simple alternatives exist.
PrivacyTools_Services: | : |
PrivacyTools Services
The_PrivacyTools_team_is_proud_to_launch_a_variety_of_privacycentric_online_services_including_a_Ma: | The_PrivacyTools_team_is_proud_to_launch_a_variety_of_privacycentric_online_services_including_a_Ma: |
The PrivacyTools team is proud to launch a variety of privacy-centric online services, including a Mastodon instance, search engine, and more! The PrivacyTools team is proud to launch a variety of privacy-centric online services, including a Mastodon instance, search engine, and more!
Donate: |
Donate
We_cant_operate_this_site_without_the_generous_contributions_we_receive_from_our_viewers._If_you_lov: | We_cant_operate_this_site_without_the_generous_contributions_we_receive_from_our_viewers._If_you_lov: |
We can't operate this site without the generous contributions we receive from our viewers. If you love privacy and our website please consider donating. We can't operate this site without the generous contributions we receive from our viewers. If you love privacy and our website please consider donating.
@ -65,6 +53,15 @@ Showcase_your_brand_as_a_sponsor_of_PrivacyTools_here_and_support_our_mission_of
Learn_more...: | Learn_more...: |
Learn more... Learn more...
Join_our_Discourse_community_to_stay_up_to_date_on_privacy_news_or_make_suggestions!: |
Join our Discourse community to stay up to date on privacy news or make suggestions!
Get_the_latest_privacyrelated_updates_from_our_Mastodon_Feed._Follow_us_today!: |
Get the latest privacy-related updates from our Mastodon Feed. Follow us today!
The_complete_website_source_code_is_available_on_GitHub._Join_our_developer_team!: |
The complete website source code is available on GitHub. Join our developer team!
Encrypted_Cloud_Storage_Services: | Encrypted_Cloud_Storage_Services: |
Encrypted Cloud Storage Services Encrypted Cloud Storage Services