This repository has been archived by the owner on Nov 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPDATE - contribution guide; tweaks, naming, cleaning
- Loading branch information
1 parent
7ec2681
commit df63ad4
Showing
24 changed files
with
310 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
affil: "Affiliate link" | ||
disclaimer: "Affiliate Link: Some services link to their official site, with a separate affiliate link if you choose to support Techlore. View our strict requirements <a href=\"https://discuss.techlore.tech/pub/sponsors-affiliates\" target=\"blank\">here</a>. To view all affiliates, visit <a href=\"[[affiliatesUrl]]\">here.</a>" | ||
favorite: "marks a favorite. They don't represent every threat model and shouldn't be over-analyzed." | ||
external: "Explore our curated list of organizations and tools that offer valuable insights, advocacy, and support for protecting your online freedoms." | ||
sections: | ||
software: "Software, hardware and applications" | ||
operating-systems: "Operating systems" | ||
other-services: "Other services" | ||
external-resources: "External resources" | ||
categories: | ||
web-browsers: "Web Browsers" | ||
password-managers: "Password Managers" | ||
totp-2fa: "TOTP 2FA" | ||
encryption: "Encryption" | ||
firewalls: "Firewalls" | ||
applications: "Applications" | ||
desktop: "Desktop" | ||
android: "Android" | ||
expendable-liveos: "Expendable/LiveOS" | ||
search-engines: "Search engines" | ||
vpns: "VPNs" | ||
dns: "DNS" | ||
messengers: "Messengers" | ||
email: "Email" | ||
aliasing: "Aliasing" | ||
cloud-providers: "Cloud providers" | ||
notes-a-docs: "Notes & docs" | ||
cryptocurrencies: "Cryptocurrencies" | ||
hardware-2fa: "Hardware 2FA" | ||
webhosting-vps: "Webhosting/VPS" | ||
networking: "Networking" | ||
other-tools: "Other tools" | ||
guides: "Guides" | ||
digital-rights: "Digital rights" | ||
creators: "Creators" | ||
labels: | ||
android: "Android" | ||
ios: "iOS" | ||
desktop: "Desktop" | ||
official: "Official web" | ||
youtube: "YouTube channel" | ||
related: "May come in handy" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% comment %} | ||
goincognitotable (Go Incognito courses) - columns ----------------------------------------- | ||
Data source: _includes/goincognitotable.html | ||
Parameters: | ||
isPremium (boolean): activating premium visuals (class + button class) | ||
{% endcomment %} | ||
|
||
{% assign data = include.data %} | ||
|
||
<div class="goincognitotable__column column has-text-centered is-flex is-flex-direction-column is-align-items-center is-gap-2 p-6{% if include.isPremium %} goincognitotable__column--premium has-glare{% endif %}"> | ||
{% if data.icon %} | ||
{% include e_render-svg-icon.html icon=data.icon inline=true %} | ||
{% endif %} | ||
|
||
{% if data.title %} | ||
<h4 class="goincognitotable__title">{{ data.title }}</h4> | ||
{% endif %} | ||
|
||
{% if data.desc %} | ||
<p class="goincognitotable__desc">{{ data.desc }}</p> | ||
{% endif %} | ||
|
||
{% if data.sellingPoints.size > 0 %} | ||
<ul class="goincognitotable__list listless marginless"> | ||
{% for point in data.sellingPoints %} | ||
<li class="goincognitotable__list-item marginless pt-2 pb-2">{{ point }}</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
|
||
{% if data.buttons.size > 0 %} | ||
{% for button in data.buttons %} | ||
<a href="{{ button.url }}" class="goincognitotable__button button{% if include.isPremium %} is-warning{% endif %}">{{ button.text }}</a> | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% if data.note %} | ||
<div class="goincognitotable__footnote columns is-flex"> | ||
<div class="column is-flex-grow-0 p-1"> | ||
{% include e_render-svg-icon.html icon="info-circle" inline=true dimension=25 %} | ||
</div> | ||
<div class="column has-text-left is-size-7 p-1"> | ||
<p><i>{{ data.note }}</i></p> | ||
</div> | ||
</div> | ||
{% endif %} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% comment %} | ||
goincognitotable (Go Incognito courses) ----------------------------------------- | ||
Data source: _data/_en/goincognitotable.yml | ||
{% endcomment %} | ||
|
||
{% include variables.html %} | ||
|
||
<div class="goincognitotable columns has-2-columns"> | ||
<img src="{{ '/assets/logos/techlore-logo-incognito-v5.svg' | absolute_url }}" class="goincognitotable__logo has-radius-rounded" loading="lazy" alt="Logo - {{ t.goincognito.title }}"> | ||
|
||
{% assign dataFree = site.data._en.goincognitotable.free %} | ||
{%- include c_goincognitotable-column.html data=dataFree -%} | ||
|
||
{% assign dataPremium = site.data._en.goincognitotable.premium %} | ||
{%- include c_goincognitotable-column.html data=dataPremium isPremium=true -%} | ||
</div> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.