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

51 lines
3.2 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 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 }}