Do all the | default in the language files and access lang strings in index using simple variables
This commit is contained in:
parent
6cee717a86
commit
f66ad97134
@ -1,16 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Privacy? I don't have anything to hide.
|
title: Italian title for nothing to hide
|
||||||
quote: >
|
quote: >
|
||||||
Over the last 16 months, as I've debated this issue around the world,
|
Italian quote
|
||||||
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." <strong>Not a single person hsa taken me up on
|
|
||||||
that offer</strong>
|
|
||||||
---
|
---
|
@ -33,17 +33,17 @@
|
|||||||
|
|
||||||
{% include lang for="nothing_to_hide" lang=selected %}
|
{% include lang for="nothing_to_hide" lang=selected %}
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1>{{ lang.title | default: en.title }}</h1>
|
<h1>{{ title }}</h1>
|
||||||
</div>
|
</div>
|
||||||
<blockquote class="blockquote">
|
<blockquote class="blockquote">
|
||||||
<p>
|
<p>
|
||||||
<a href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters" title="Glenn Greenwald - {{ lang.talk_name | default: en.talk_name }} - TED Talk"><img
|
<a href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters" title="Glenn Greenwald - {{ talk_name }} - TED Talk"><img
|
||||||
src="/assets/img/layout/Glenn-Greenwald-Why-privacy-matters.jpg" class="img-fluid float-right ml-2" alt="Glenn Greenwald: Why privacy matters"></a>
|
src="/assets/img/layout/Glenn-Greenwald-Why-privacy-matters.jpg" class="img-fluid float-right ml-2" alt="Glenn Greenwald: Why privacy matters"></a>
|
||||||
{{ lang.quote | default: en.quote }}
|
{{ quote }}
|
||||||
</p>
|
</p>
|
||||||
<footer class="blockquote-footer">Glenn Greenwald in <cite title="{{ lang.talk_name | default: en.talk_name }} - TED Talk"><a
|
<footer class="blockquote-footer">Glenn Greenwald in <cite title="{{ talk_name }} - TED Talk"><a
|
||||||
href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters">
|
href="http://www.ted.com/talks/glenn_greenwald_why_privacy_matters">
|
||||||
{{ lang.talk_name | default: en.talk_name }} - TED Talk</a></cite></footer>
|
{{ talk_name }} - TED Talk</a></cite></footer>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
|
|
||||||
<h4>{{ language['Read also'] | default: english['Read also'] }}</h4>
|
<h4>{{ language['Read also'] | default: english['Read also'] }}</h4>
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
{% assign lang = site.data.lang.[include.lang].[include.for] %}
|
{% assign lang = site.data.lang.[include.lang].[include.for] %}
|
||||||
{% assign en = site.data.lang.en.[include.for] %}
|
{% assign en = site.data.lang.en.[include.for] %}
|
||||||
|
|
||||||
|
{% include langs/{{include.for}} lang=lang en=en %}
|
3
_includes/langs/nothing_to_hide
Normal file
3
_includes/langs/nothing_to_hide
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{% assign title = include.lang.title | default: include.en.title %}
|
||||||
|
{% assign quote = include.lang.quote | default: include.en.quote %}
|
||||||
|
{% assign talk_name = include.lang.talk_name | default: include.en.talk_name %}
|
Reference in New Issue
Block a user