@@ -1,7 +1,7 @@ | |||
GEM | |||
remote: https://rubygems.org/ | |||
specs: | |||
activesupport (6.1.3) | |||
activesupport (6.1.3.1) | |||
concurrent-ruby (~> 1.0, >= 1.0.2) | |||
i18n (>= 1.6, < 2) | |||
minitest (>= 5.1) | |||
@@ -0,0 +1,5 @@ | |||
name,surname,url,description,nationality,what,lang | |||
Tommi,,https://tommi.space/,Tommi’s personal website,it,main l10n,it en fr | |||
Veronica,Piccolo,https://www.isoc.it/users/veronica.piccolo,Veronica Piccolo’s profile on The Internet Society forum,it,help,it en | |||
Margherita,Moro,,,it,help,it en | |||
Jasmine,Abd El Gelil,,,it,draw,it |
@@ -1,19 +1,32 @@ | |||
--- | |||
title: "Contributors" | |||
title: Contributors | |||
permalink: /contributors | |||
description: "Everyone who made this website" | |||
description: 'Everyone who <a href="/contribute" target="_blank" title="Contribute">contributed</a> to this website' | |||
redirect_from: ["/people"] | |||
ref: people | |||
--- | |||
This website was created by [Tommi](https://tommi.space "Tommi's personal website"). | |||
This website [was created](/about "About quitsocialmedia.club") by [Tommi](https://tommi.space "Tommi's personal website"). | |||
<br> | |||
<br> | |||
## Localization | |||
Everyone who localized content: | |||
Everyone who [localized](/l10n "Localization") this website’s content: | |||
- [Tommi](https://tommi.space "Tommi’s personal website") - 🇮🇹🇬🇧 | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'l10n' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.title }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> | |||
<br> | |||
<br> | |||
@@ -22,4 +35,37 @@ Everyone who localized content: | |||
Anyone who was consulted and contacted with questions regarding the website. | |||
- [Veronica Piccolo](https://www.isoc.it/users/veronica.piccolo "Veronica Piccolo’s page in Internet Society") | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'help' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.title }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> | |||
<br> | |||
<br> | |||
## Illustrations | |||
The authors of the drawings and illustrations displayed in the website. | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'draw' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.title }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> |
@@ -0,0 +1,72 @@ | |||
--- | |||
title: Partecipanti | |||
permalink: /partecipanti | |||
description: 'Tutti coloro che hanno <a href="/contribuisci" target="_blank" title="Contribuisci">contribuito</a> a questo sito' | |||
redirect_from: ["/persone", "/it/contributors", "/contributors-it", "/contributori"] | |||
lang: it | |||
ref: people | |||
--- | |||
Questo sito [è stato creato](/info "Informazioni su quitsocialmedia.club") da [Tommi](https://tommi.space "Tommi's personal website"). | |||
<br> | |||
<br> | |||
## Localizzazione | |||
Tutti coloro che hanno [localizzato](/l10n "Localization") i contenuti di questo sito: | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'l10n' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.description }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> | |||
<br> | |||
<br> | |||
## Suggerimenti e miglioramenti | |||
Le persone che hanno contribuito a migliorare i contenuti e la forma in cui sono stati esposti. | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'help' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.description }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> | |||
<br> | |||
<br> | |||
## Illustrazioni | |||
Gli autori delle illustrazioni presenti nelle varie pagine | |||
<ul> | |||
{% for person in site.data.people %} | |||
{% if person.what contains 'draw' %} | |||
<li> | |||
{% if person.url != nil %} | |||
<a href="{{ person.url }}" rel="noopener noreferrer" target="_blank" title="{{ person.description }}">{{ person.name }} {{ person.surname }}</a> | |||
{% else %} | |||
{{ person.name }} {{ person.surname }} | |||
{% endif %} | |||
</li> | |||
{% endif %} | |||
{% endfor %} | |||
</ul> |
@@ -318,7 +318,9 @@ article li, | |||
content: "❌ "; | |||
} | |||
} | |||
&[href="/contributors" i] { | |||
&[href^="/contributors" i], | |||
&[href^="/it/cont" i], | |||
&[href="/partecipanti" i] { | |||
&::before { | |||
content: "🧑🏽💻 "; | |||
} | |||