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

54 lines
3.9 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 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 links:</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>
<li>this video by Niccolò Venerandi (<a href="https://youtu.be/6QIkSikSCdY">YouTube</a>, <a href="https://tube.kockatoo.org/videos/watch/69c99b14-b98a-49a8-9fdf-5d80be05be96">PeerTube</a>) talking in depth about the whole situation.</li>
</ul></span>
</div>
<h1 class="site-title">I make <a style="color: #eb4034" href="/art">art</a>, <a style="color: #ffb002" href="/blog">blog posts</a>, <a style="color: #03b000" href="/design">designs</a>, <a style="color: #00e8f6" href="/software">software</a>, <a style="color: #0171ff" href="/videos">videos</a>, <a style="color: #ab09ff" href="/wallpapers">wallpapers</a> and <a style="color: #99e0ff" href="/other">more</a>.</h1><br />
<div class="post-feed">
{{ $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>
<p><b>Disclaimer</b>: some of the older content of mine (art, videos, etc.) may not be listed here, check out <a href="/socials">my social profiles</a>.</p><br />
</div>
</main>
{{ end }}