diff --git a/_includes/_configure b/_includes/_configure
new file mode 100644
index 00000000..0c9ce139
--- /dev/null
+++ b/_includes/_configure
@@ -0,0 +1,3 @@
+{% assign lang = site.data.lang.[include.lang].[include.section] %}
+{% assign en = site.data.lang.en.[include.section] %}
+{% include langs/{{include.section}} lang=lang en=en %}
\ No newline at end of file
diff --git a/_includes/content.html b/_includes/content.html
new file mode 100644
index 00000000..c06cac5d
--- /dev/null
+++ b/_includes/content.html
@@ -0,0 +1,5 @@
+{% capture md %}
+{% include content/{{include.section}}.md lang=page.lang section=include.section %}
+{% endcapture %}
+
+{{ md | markdownify }}
\ No newline at end of file
diff --git a/_includes/content/nothing_to_hide.md b/_includes/content/nothing_to_hide.md
new file mode 100644
index 00000000..5781c35a
--- /dev/null
+++ b/_includes/content/nothing_to_hide.md
@@ -0,0 +1,18 @@
+{% include _configure section=include.section lang=include.lang %}
+
+
+
@@ -28,29 +27,9 @@
Français
-
+
-
-
-
-
-
- Over the last 16 months, as I've debated this issue around the world, every single time somebody has said to me, "I don't really worry about invasions of privacy because I don't have anything to hide." I always say the same thing to them. I get out a
- pen, I write down my email address. I say, "Here's my email address. What I want you to do when you get home is email me the passwords to all of your email accounts, not just the nice, respectable work one in your name, but all of them, because I
- want to be able to just troll through what it is you're doing online, read what I want to read and publish whatever I find interesting. After all, if you're not a bad person, if you're doing nothing wrong, you should have nothing to hide." Not a single person has taken me up on that offer.
-
-
-
-
Read also:
-
-
-
+ {% include content.html section="nothing_to_hide" %}
@@ -1420,20 +1399,20 @@
Secure Hosting Provider
- {% include card.html color="success"
+ {% include components/card.html color="success"
title="BAHNHOF"
image="assets/img/tools/bahnhof.png"
url="https://www.bahnhof.net/"
description="BAHNHOF is a widely known 'bullet-proof' hosting company utilized by Wikileaks."
%}
- {% include card.html color="primary"
+ {% include components/card.html color="primary"
title="Colocation: DataCell"
image="assets/img/tools/datacell.png"
url="https://datacell.is/"
description="DataCell is a data center providing secure colocating in Switzerland and Iceland."
%}
- {% include card.html color="warning"
+ {% include components/card.html color="warning"
title="VPS/Web Hosting: Orange Website"
image="assets/img/tools/orange_hosting.png"
url="https://www.orangewebsite.com/"
diff --git a/languages/en.html b/languages/en.html
index ebb32e52..09c86844 100644
--- a/languages/en.html
+++ b/languages/en.html
@@ -1,6 +1,7 @@
---
layout: default
permalink: /
+lang: "en"
---
{% include index.html lang="en" %}
\ No newline at end of file
diff --git a/languages/it.html b/languages/it.html
index 8905831b..b6884115 100644
--- a/languages/it.html
+++ b/languages/it.html
@@ -1,6 +1,7 @@
---
layout: default
permalink: /it/
+lang: it
---
{% include index.html lang="it" %}
\ No newline at end of file