quitsocialmedia.club/pages/Home.html

86 lines
2.9 KiB
HTML
Raw Normal View History

2021-01-01 12:53:46 +01:00
---
title: Home
ref: home
2022-06-01 10:26:43 +02:00
permalink: /home/
layout: wrapper
toc: false
2021-01-01 12:53:46 +01:00
---
2022-06-01 10:26:43 +02:00
<div class='one column'>
<div class='row'>
<div class='page-header'>
2021-01-01 12:53:46 +01:00
<h1>Quit Social Media</h1>
<p>All of the reasons why Social Media platforms are bad and possible solutions to live a happy life on the web without them</p>
</div>
</div>
2022-06-01 10:26:43 +02:00
<div class='red box row'>
<h2 class='title'>WTF is this website?</h2>
2021-01-01 12:53:46 +01:00
<p>
2021-02-01 19:07:20 +01:00
<b>Short answer</b>: a place where all the reasons why social media are harmful are listed and several resources to deepen knowledge on the topic are provided, together with valid solutions and alternatives.
2021-01-01 12:53:46 +01:00
<br />
2022-06-01 10:26:43 +02:00
<b>Long answer</b>: read the <a href='/about'>About page</a>
2021-01-01 12:53:46 +01:00
</p>
2022-06-01 10:26:43 +02:00
<h3 class='title' style='margin-top:var(--twice)'>Where to start</h3>
2021-01-01 12:53:46 +01:00
<p>
2022-06-01 10:26:43 +02:00
You probably are a busy person who does not have time to go through all of the stuff that is on here. Ok, I got you: just read this <a href='/quick'>quick summary</a>
2021-01-01 12:53:46 +01:00
</p>
<p>
2022-06-01 10:26:43 +02:00
If devoting a bit more of your time to the topic does not bother you, I can assure you its definitely worth it. I suggest you to follow <a href='/path' title='Path'>this path</a>
2021-01-01 12:53:46 +01:00
</p>
</div>
{% for post in site.posts %}
{% if forloop.first %}
2022-06-01 10:26:43 +02:00
<div class='row'>
<a href='/blog'><h2 class='title'>Updates</h2></a>
2021-01-01 12:53:46 +01:00
<ul>
2022-06-01 10:26:43 +02:00
<li>{{ post.date | date_to_long_string }} - <a href='{{ post.url }}' title='{{ post.title }}'></a></li>
2021-01-01 12:53:46 +01:00
{% elsif forloop.last %}
2022-06-01 10:26:43 +02:00
<li>{{ post.date | date_to_long_string }} - <a href='{{ post.url }}' title='{{ post.title }}'></a></li>
2021-01-01 12:53:46 +01:00
</ul>
</div>
{% else %}
2022-06-01 10:26:43 +02:00
<li>{{ post.date | date_to_long_string }} - <a href='{{ post.url }}' title='{{ post.title }}'></a></li>
2021-01-01 12:53:46 +01:00
{% endif %}
{% else %}
{% endfor %}
2021-02-11 09:59:35 +01:00
<br />
2022-06-01 10:26:43 +02:00
<div class='row'>
<h2 class='title'>Get in touch!</h2>
<p>If you have any questions or suggestions, please don't hesitate to <a href='mailto:{{ site.email | encode_email }}' target='_blank' rel='noopener noreferrer' title='Send me an email'>write me an email</a> (<a href='https://keys.openpgp.org/vks/v1/by-fingerprint/D435660C86733BA1C4C22F4D922BA2D96336049E' title='PGP Key hello@quitsocialmedia.club'>PGP key</a>).</p>
2021-01-06 10:51:10 +01:00
</div>
2021-02-11 09:59:35 +01:00
<br />
2022-06-01 10:26:43 +02:00
<div class='blue box row'>
<a href='/contribute'><h2 class='title'>Contribute</h2></a>
{% for contrib in collections.all %}
{% if contrib.data.title == 'Contribute' %}
{{ contrib.templateContent }}
2021-01-01 12:53:46 +01:00
{% endif %}
{% endfor %}
</div>
2021-02-11 09:59:35 +01:00
<br />
2022-06-01 10:26:43 +02:00
<div class='margin row'>
<h2 class='title'>Website pages</h2>
2021-01-01 12:53:46 +01:00
<p>An overview of all the pages in the website:</p>
<ul>
2022-06-01 10:26:43 +02:00
{% for p in %}
2021-01-01 12:53:46 +01:00
{% if p.lang == page.lang %}
2021-02-01 19:07:20 +01:00
{% unless p.url contains '.json' or p.url contains '.csv' or p.url contains '.css' or p.url contains '.txt' or p.title contains '404' or p.url contains '.xml' or p.title == nil or p.title == 'Home' %}
2022-06-01 10:26:43 +02:00
<li><a href='{{ p.url }}' title='{{ p.title }}'>{{ p.title }}</a> - {{ p.description }}</li>
2021-01-01 12:53:46 +01:00
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
2021-02-11 09:59:35 +01:00
<br />
<br />
2021-11-10 13:10:32 +01:00
</div>