gmgsite/themes/hugo-casper3/layouts/index.html

60 lines
4.6 KiB
HTML

{{ define "body_class" }} home-template {{ end }}
{{ define "main" }}
<header class="site-home-header">
{{ .Scratch.Set "background" .Params.feature_image }}
{{- partial "header-background.html" . -}}
<div class="inner">
{{- partial "site-nav.html" . -}}
<div class="site-header-content">
<h1 class="site-title fadein">
{{ if $.Site.Params.logo }}
<img class="site-logo" src="{{ $.Site.Params.logo }}" alt="{{ .Site.Title }}" />
{{ else }}
Hi, I'm <font color="#EB4034">{{ $.Site.Title }}</font>.
{{ end }}
</h1>
<h2 class="site-description fadein">I'm an <font color="#EB4034">artist</font>, <font color="#0171FF">designer</font>, <font color="#03B000">photographer</font> and <font color="#FFB002">libre advocate</font>.</h2>
<!-- This is the old way of getting the description, I had to hardcode it in order to apply color. -->
<!-- <h2 class="site-description">{{ $.Site.Params.description }}</h2> -->
</div>
</div>
</div>
</header>
<main id="site-main" class="site-main outer">
<div class="inner posts">
<div class="post-feed">
<div id="banner">
<span><h2>Stop EU's eIDAS Article 45 proposal!</h2>
<p>The EU strikes once again, this time with a proposal to <b>force browsers to go through EU-approved certificate authorities and cryptographic keys</b> which allows governments to <b>intercept HTTP(S) traffic of all european citizens</b>. The middle man here would be ETSI, EU's IT standards body, which has <b>a worrysome track record</b> of creating compromised cryptographic standards and working with organizations involved in intercepting communications through backdoors.</p>
<p>To know more about this and to try stopping it, check the following websites:</p>
<ul>
<li><a href="https://last-chance-for-eidas.org/">last-chance-for-eidas.org</a> which is an open letter by Mozilla explaining the whole situation with extra links in it;</li>
<li><a href="https://eidas-open-letter.org/">eidas-open-letter.org</a> which is an open letter made by researchers and NGOs;</li>
<li><a href="https://www.computerweekly.com/news/366557952/EU-eIDAS-reforms-should-be-actively-resisted-say-experts">this article from ComputerWeekly</a> that does an in depth explaination of the proposal;</li>
<li><a href="https://www.jeremiahlee.com/posts/2023-eu-eidas-feedback/">this article from Jeremiah Lee</a> which gives you a quick link to email Romana Jerković, the MEP responsible for eIDAS, and a link to contact your country's MEPs.</li>
</ul>
<h2>Stop EU's Chat Control 2.0 law proposal!</h2>
<p>If you're an EU citizen like me, <b>your digital privacy as a whole is at risk</b> if this law passes. All online platforms (social media, messaging, etc.) would be forced to <b>implement client-side scanning for all text and media passing through them</b> and force age verification with a real ID. These checks will happen through a centralized entity that could be also <b>a great target for attacks</b> from bad actors. All of this in the name of "protecting children from predators", when there are other methods that are more effective and that do not contribute to the already very dystopic reality we live in.</p>
<p>To know more about this and to try stopping it, check the following websites:</p>
<ul>
<li><a href="https://stopchatcontrol.eu/">stopchatcontrol.eu</a> where you can get an email template to let your MEP know about this;</li>
<li><a href="https://stopscanningme.eu/">stopscanningme.eu</a> where you can sign a petition through <a href="https://edri.org/">EDRi</a>;</li>
<li><a href="https://www.patrick-breyer.de/en/posts/chat-control/">this article from Patrick Breyer</a> that goes into detail on the proposal and its potential consequences;</li>
<li><a href="https://balkaninsight.com/2023/09/25/who-benefits-inside-the-eus-fight-over-scanning-for-child-sex-content/">this article from BalkanInsight</a> exposing the entities who benefit commercially from this law.</li>
</ul></span>
</div>
{{ $pages := site.RegularPages }}
{{ range $index, $element := $pages }}{{ if ne .Params.rss_ignore true }}
{{- partial "post-card.html" (dict "context" . "index" $index "home" $.IsHome) -}}
{{ end }}{{ end }}
</div>
</div>
</main>
{{ end }}