From ba17124d052b60f47a89c5d7c868f084bd134541 Mon Sep 17 00:00:00 2001 From: octospacc Date: Mon, 23 Jun 2025 02:21:28 +0200 Subject: [PATCH] Fix modile text width & add so so many tomes... --- _includes/tome-cover | 4 ++-- _layouts/index.html | 19 +++++++++++++------ _tomes/en/hello-world-the-manga.md | 13 +++++++++++++ _tomes/en/puella-magi-madoka-magica/1.md | 11 +++++++++++ _tomes/en/puella-magi-madoka-magica/2.md | 11 +++++++++++ _tomes/en/puella-magi-madoka-magica/3.md | 11 +++++++++++ _tomes/en/puella-magi-madoka-magica/index.md | 12 ++++++++++++ _tomes/en/the-promised-neverland/1.md | 13 +++++++++++++ _tomes/en/the-promised-neverland/2.md | 13 +++++++++++++ _tomes/en/the-promised-neverland/3.md | 13 +++++++++++++ _tomes/en/the-promised-neverland/4.md | 13 +++++++++++++ _tomes/en/the-promised-neverland/5.md | 13 +++++++++++++ _tomes/en/the-promised-neverland/index.md | 11 +++++++++++ _tomes/en/yoga-fellatio.md | 6 ++++++ _tomes/en/your-name-manga/1.md | 11 +++++++++++ _tomes/en/your-name-manga/2.md | 11 +++++++++++ _tomes/en/your-name-manga/3.md | 11 +++++++++++ _tomes/en/your-name-manga/index.md | 11 +++++++++++ _tomes/it/cuore.md | 15 +++++++++++++++ _tomes/it/exit-reality.md | 18 ++++++++++++++++++ .../it/scottecs-gigazine/0-numero-zero-xl.md | 10 ++++++++++ .../it/scottecs-gigazine/1-un-nuovo-inizio.md | 12 ++++++++++++ .../2-bruco-gianluco-ipsilon.md | 10 ++++++++++ .../3-fufos-e-la-pallina-di-apollo.md | 12 ++++++++++++ _tomes/it/scottecs-gigazine/index.md | 9 +++++++++ _tomes/ja/mens-non-no/457.md | 4 ++++ _tomes/ja/mens-non-no/index.md | 7 +++++++ assets/scss/_layout.scss | 7 +++---- 28 files changed, 299 insertions(+), 12 deletions(-) create mode 100644 _tomes/en/hello-world-the-manga.md create mode 100644 _tomes/en/puella-magi-madoka-magica/1.md create mode 100644 _tomes/en/puella-magi-madoka-magica/2.md create mode 100644 _tomes/en/puella-magi-madoka-magica/3.md create mode 100644 _tomes/en/puella-magi-madoka-magica/index.md create mode 100644 _tomes/en/the-promised-neverland/1.md create mode 100644 _tomes/en/the-promised-neverland/2.md create mode 100644 _tomes/en/the-promised-neverland/3.md create mode 100644 _tomes/en/the-promised-neverland/4.md create mode 100644 _tomes/en/the-promised-neverland/5.md create mode 100644 _tomes/en/the-promised-neverland/index.md create mode 100644 _tomes/en/yoga-fellatio.md create mode 100644 _tomes/en/your-name-manga/1.md create mode 100644 _tomes/en/your-name-manga/2.md create mode 100644 _tomes/en/your-name-manga/3.md create mode 100644 _tomes/en/your-name-manga/index.md create mode 100644 _tomes/it/cuore.md create mode 100644 _tomes/it/exit-reality.md create mode 100644 _tomes/it/scottecs-gigazine/0-numero-zero-xl.md create mode 100644 _tomes/it/scottecs-gigazine/1-un-nuovo-inizio.md create mode 100644 _tomes/it/scottecs-gigazine/2-bruco-gianluco-ipsilon.md create mode 100644 _tomes/it/scottecs-gigazine/3-fufos-e-la-pallina-di-apollo.md create mode 100644 _tomes/it/scottecs-gigazine/index.md create mode 100644 _tomes/ja/mens-non-no/457.md create mode 100644 _tomes/ja/mens-non-no/index.md diff --git a/_includes/tome-cover b/_includes/tome-cover index b64d804..83d271d 100644 --- a/_includes/tome-cover +++ b/_includes/tome-cover @@ -1,9 +1,9 @@ -{%- capture prefix -%}{{ site.extra.store }}/tomes/{%- endcapture -%} +{%- capture prefix -%}{{ site.extra.store }}/tomes{%- endcapture -%} {%- if include.tome -%} {%- assign tome = include.tome -%} {%- capture id %}{%- include tome-id tome=tome -%}{%- endcapture -%} {%- capture folder %}{%- include tome-field tome=tome field='folder' -%}{%- endcapture -%} -{{ site.extra.store }}/tomes/{% if folder != '' %}{{ id | split: '/' | first }}{% else %}{{ id }}{% endif %}/{{ tome.cover }} +{{ prefix }}/{% if folder != '' %}{{ id | split: '/' | first }}{% else %}{{ id }}{% endif %}/{{ tome.cover }} {%- else -%} {{ prefix }} {%- endif -%} \ No newline at end of file diff --git a/_layouts/index.html b/_layouts/index.html index b68c276..5516562 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -3,16 +3,21 @@ - {{ site.name }} | {{ site.tagline }} - - - - - {% include head.html %} {%- capture this-id -%} {%- include tome-id tome=page -%} {%- endcapture -%} {%- assign this-id = this-id | split: '/' | first | strip -%} + {% if this-id == '' %} + {{ site.name }} | {{ site.tagline }} + + {% else %} + {{ page.title }} | {{ site.name }} + + {% endif %} + + + + {% include head.html %} {% include header.html %} @@ -61,6 +66,8 @@ {%- if parts[1] == 'index' and cover2 != '' -%} + {% elsif this-id == '' %} + {{ tome.title }} {% else %} {{ tome.title }} {% endif %} diff --git a/_tomes/en/hello-world-the-manga.md b/_tomes/en/hello-world-the-manga.md new file mode 100644 index 0000000..ec76a07 --- /dev/null +++ b/_tomes/en/hello-world-the-manga.md @@ -0,0 +1,13 @@ +--- +title: "HELLO WORLD: The Manga" +publisher: "Seven Seas Entertainment" +isbn: "978-1-64827-591-3" +date: "2021-09-28" +webpage: "https://sevenseasentertainment.com/books/hello-world-the-manga/" +cover: "cover.jpeg" +chapters: ["0_Chapter_1.cbz","1_Chapter_2.cbz","2_Chapter_3.cbz","3_Chapter_4.cbz","4_Chapter_5.cbz","5_Chapter_6.cbz","6_Chapter_7.cbz","7_Chapter_8.cbz","8_Chapter_9.cbz","9_Chapter_10_End.cbz"] +--- + +An atmospheric high school love story with a science fiction plot full of twists and turns. (And don’t miss the light novel, also from Seven Seas!) + +Naomi is a shy teenage boy living an ordinary life until the day a mysterious man appears–himself, ten years in the future. Future Naomi brings a dire warning: Naomi’s soon-to-be girlfriend Ruri will be in a tragic accident not long after they start dating. Can they change the past and build a better future…or is there something more to Naomi’s mission than saving one girl’s life? \ No newline at end of file diff --git a/_tomes/en/puella-magi-madoka-magica/1.md b/_tomes/en/puella-magi-madoka-magica/1.md new file mode 100644 index 0000000..5d5d0ac --- /dev/null +++ b/_tomes/en/puella-magi-madoka-magica/1.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 1" +date: "2012-05-29" +isbn: "031638903X, 9780316389037" +gbooks: "-ECzCwAAQBAJ" +chapters: ["0_Chap_1.cbz","1_Chap_2.cbz","2_Chap_3.cbz","3_Chap_4.cbz"] +cover: "-251518170_001000.png" +webpage: "https://yenpress.com/titles/9780316213875-puella-magi-madoka-magica-vol-1" +--- + +When a new girl joins her class, Madoka Kaname feels she recognizes the mysterious, dark-haired transfer student from one of her dreams...a dream where she is approached by a cat-like creature who offers Madoka an opportunity to change destiny. Madoka had always thought magic was the stuff of fantasy...until she sees the transfer student fighting with the very cat-being from her dream! And just like in Madoka's dream, the cat gives her a choice: Will Madoka become a Puella Magi in exchange for her dearest desire? What will be the cost of having her wish come true? diff --git a/_tomes/en/puella-magi-madoka-magica/2.md b/_tomes/en/puella-magi-madoka-magica/2.md new file mode 100644 index 0000000..3b88910 --- /dev/null +++ b/_tomes/en/puella-magi-madoka-magica/2.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 2" +date: "2012-08-21" +isbn: "0316389056, 9780316389051" +gbooks: "ufW5BwAAQBAJ" +chapters: ["4_Chap_5.cbz","5_Chap_6.cbz","6_Chap_7.cbz","7_Chap_8.cbz"] +cover: "-251518170_005000.png" +webpage: "https://yenpress.com/titles/9780316217156-puella-magi-madoka-magica-vol-2" +--- + +While Madoka continues to deliberate over the decision to join Akemi as a magical girl, her best friend, Sayaka, seizes the chance to wish for the recovery of the boy she loves. But when Sayaka is caught in a territory dispute with a more experienced (and more deadly) magical girl named Kyouko, Madoka is reminded that being a magical girl is more than a matter of donning a frilly costume and fighting evil...it is also a matter of life and death! diff --git a/_tomes/en/puella-magi-madoka-magica/3.md b/_tomes/en/puella-magi-madoka-magica/3.md new file mode 100644 index 0000000..359d71c --- /dev/null +++ b/_tomes/en/puella-magi-madoka-magica/3.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 3" +date: "2012-12-11" +isbn: "0316389080, 9780316389082" +gbooks: "jUGzCwAAQBAJ" +chapters: ["8_Chap_9.cbz","9_Chap_10.cbz","10_Chap_11.cbz","11_Chap_12.cbz"] +cover: "-251518170_009000.png" +webpage: "https://yenpress.com/titles/9780316217163-puella-magi-madoka-magica-vol-3" +--- + +Madoka is horrified to learn the true nature of the witches she and her friends, the Magical Girls, have been fighting-and the terrible fate that awaits any Magical Girl who accepts Kyubey's offer of power. Having watched countless Magical Girls sacrificed for the larger aims of his people, Kyubey is only interested in securing more girls to that end, and Madoka is left with his chilling reminder that she too is destined to be a Magical Girl of incredible power... Can Madoka and her friends escape this tragic fate? diff --git a/_tomes/en/puella-magi-madoka-magica/index.md b/_tomes/en/puella-magi-madoka-magica/index.md new file mode 100644 index 0000000..11feaa7 --- /dev/null +++ b/_tomes/en/puella-magi-madoka-magica/index.md @@ -0,0 +1,12 @@ +--- +layout: "index" +permalink: "/en/puella-magi-madoka-magica/" +title: "Puella Magi Madoka Magica" +authors: "Magica Quartet" +publisher: "Yen Press LLC" +date: "2015-06-23" +folder: "en" +cover: "-251518170_001000.png" +cover2: "-251518170_009000.png" +webpage: "https://yenpress.com/series/puella-magi-madoka-magica" +--- \ No newline at end of file diff --git a/_tomes/en/the-promised-neverland/1.md b/_tomes/en/the-promised-neverland/1.md new file mode 100644 index 0000000..1a3a193 --- /dev/null +++ b/_tomes/en/the-promised-neverland/1.md @@ -0,0 +1,13 @@ +--- +title: "Vol. 1" +subtitle: "Grace Field House" +date: "2017-12-05" +isbn: "1974701190, 9781974701193" +gbooks: "L-o4DwAAQBAJ" +folder: "en_viz/1" +chapters: ["20_Chap_1.cbz","21_Chap_2.cbz","22_Chap_3.cbz","23_Chap_4.cbz","24_Chap_5.cbz","25_Chap_6.cbz","26_Chap_7.cbz"] +cover: "-251518170_021000.png" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland-volume-1/product/5360" +--- + +

Emma, Norman and Ray are the brightest kids at the Grace Field House orphanage. And under the care of the woman they refer to as “Mom,” all the kids have enjoyed a comfortable life. Good food, clean clothes and the perfect environment to learn—what more could an orphan ask for? One day, though, Emma and Norman uncover the dark truth of the outside world they are forbidden from seeing.

-- VIZ Media diff --git a/_tomes/en/the-promised-neverland/2.md b/_tomes/en/the-promised-neverland/2.md new file mode 100644 index 0000000..87781b1 --- /dev/null +++ b/_tomes/en/the-promised-neverland/2.md @@ -0,0 +1,13 @@ +--- +title: "Vol. 2" +subtitle: "Control" +date: "2018-02-06" +isbn: "1974702014, 9781974702015" +gbooks: "4C1EDwAAQBAJ" +folder: "en_viz/2" +chapters: ["27_Chap_8.cbz", "28_Chap_9.cbz", "29_Chap_10.cbz", "30_Chap_11.cbz", "31_Chap_12.cbz", "32_Chap_13.cbz", "33_Chap_14.cbz", "34_Chap_15.cbz", "35_Chap_16.cbz"] +cover: "-251518170_028000.png" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland-volume-2/product/5411" +--- + +

Behind the facade of a happy orphanage, the children of Grace Field House are secretly being raised as food for demons! Determined to save themselves and the other kids, Emma, Norman and Ray begin planning an escape. But their caretaker, “Mom,” has brought in extra help to keep the orphans in line...

-- VIZ Media \ No newline at end of file diff --git a/_tomes/en/the-promised-neverland/3.md b/_tomes/en/the-promised-neverland/3.md new file mode 100644 index 0000000..4cee078 --- /dev/null +++ b/_tomes/en/the-promised-neverland/3.md @@ -0,0 +1,13 @@ +--- +title: "Vol. 3" +subtitle: "Destroy!" +date: "2018-04-03" +isbn: "1974702839, 9781974702831" +gbooks: "ZBZMDwAAQBAJ" +folder: "en_viz/3" +chapters: ["36_Chap_17.cbz", "37_Chap_18.cbz", "38_Chap_19.cbz", "39_Chap_20.cbz", "40_Chap_21.cbz", "41_Chap_22.cbz", "42_Chap_23.cbz", "43_Chap_24.cbz", "44_Chap_25.cbz"] +cover: "-251518170_037000.png" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland-volume-3/product/5467" +--- + +

In order to escape the orphanage where they are being raised as food for demons, Emma, Norman and Ray begin recruiting allies. But convincing the other children to believe them may not be an easy task.

-- VIZ Media \ No newline at end of file diff --git a/_tomes/en/the-promised-neverland/4.md b/_tomes/en/the-promised-neverland/4.md new file mode 100644 index 0000000..f25f47a --- /dev/null +++ b/_tomes/en/the-promised-neverland/4.md @@ -0,0 +1,13 @@ +--- +title: "Vol. 4" +subtitle: "I Want to Live" +date: "2018-06-05" +isbn: "197470422X, 9781974704224" +gbooks: "1K1UDwAAQBAJ" +folder: "en_viz/4" +chapters: ["45_Chap_26.cbz", "46_Chap_27.cbz", "47_Chap_28.cbz", "48_Chap_29.cbz", "49_Chap_30.cbz", "50_Chap_31.cbz", "51_Chap_32.cbz", "52_Chap_33.cbz", "53_Chap_34.cbz"] +cover: "-251518170_046000.png" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland-volume-4/product/5524" +--- + +

Just as the plan to escape the orphanage is coming together, Mom viciously breaks Emma’s leg and reveals that Norman’s days are numbered. Emma and Ray will do anything to save their friend from being eaten by the demons, but can they outsmart their devious foe?

-- VIZ Media \ No newline at end of file diff --git a/_tomes/en/the-promised-neverland/5.md b/_tomes/en/the-promised-neverland/5.md new file mode 100644 index 0000000..0359455 --- /dev/null +++ b/_tomes/en/the-promised-neverland/5.md @@ -0,0 +1,13 @@ +--- +title: "Vol. 5" +subtitle: "Escape" +date: "2018-08-07" +isbn: "1974705382, 9781974705382" +gbooks: "AEliDwAAQBAJ" +folder: "en_viz/5" +chapters: ["54_Chap_35.cbz", "55_Chap_36.cbz", "56_Chap_37.cbz", "57_Chap_38.cbz", "58_Chap_39.cbz", "59_Chap_40.cbz", "60_Chap_41.cbz", "61_Chap_42.cbz", "62_Chap_43.cbz"] +cover: "-251518170_055000.png" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland-volume-5/product/5590" +--- + +

As Grace Field House goes up in flames, Emma and the other children make their run for freedom. With Mom refusing to give up and an army of demons at her call, this escape from captivity won’t be easy. Just what will Emma have to sacrifice to pull it off...?

-- VIZ Media \ No newline at end of file diff --git a/_tomes/en/the-promised-neverland/index.md b/_tomes/en/the-promised-neverland/index.md new file mode 100644 index 0000000..3f64317 --- /dev/null +++ b/_tomes/en/the-promised-neverland/index.md @@ -0,0 +1,11 @@ +--- +layout: "index" +permalink: "/en/the-promised-neverland/" +webpage: "https://www.viz.com/manga-books/manga/promised-neverland/all" +title: "The Promised Neverland" +authors: "Kaiu Shirai" +publisher: "VIZ Media" +folder: "en_viz" +cover: "-251518170_021000.png" +cover2: "-251518170_192000.png" +--- \ No newline at end of file diff --git a/_tomes/en/yoga-fellatio.md b/_tomes/en/yoga-fellatio.md new file mode 100644 index 0000000..b68b135 --- /dev/null +++ b/_tomes/en/yoga-fellatio.md @@ -0,0 +1,6 @@ +--- +title: "Yogafellatio" +cover: "index-1_1.png" +file: "yoga-fellatio.epub" +year: 2010 +--- \ No newline at end of file diff --git a/_tomes/en/your-name-manga/1.md b/_tomes/en/your-name-manga/1.md new file mode 100644 index 0000000..9a8faf1 --- /dev/null +++ b/_tomes/en/your-name-manga/1.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 1" +date: "2017-06-20" +isbn: "0316473146, 9780316473149" +gbooks: "LBRVDgAAQBAJ" +chapters: ["0_Volume_1_Episode.cbz","1_Volume_1_Episode.cbz","2_Volume_1_Episode.cbz"] +cover: "00000000_001000.webp" +webpage: "https://yenpress.com/titles/9780316558556-your-name-vol-1-manga" +--- + +A story of two people determined to hold on to one another. Mitsuha, a high school girl from a town deep in the mountains, dreams of an unfamiliar life in Tokyo. Taki, a high school boy from Tokyo, dreams that he is a girl living in the mountains. As the two begin swapping lives, a miraculous story is set in motion. diff --git a/_tomes/en/your-name-manga/2.md b/_tomes/en/your-name-manga/2.md new file mode 100644 index 0000000..67ff295 --- /dev/null +++ b/_tomes/en/your-name-manga/2.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 2" +date: "2017-11-21" +isbn: "0316521124, 9780316521123" +gbooks: "kOUuDwAAQBAJ" +chapters: ["3_Volume_2_Episode.cbz","4_Volume_2_Episode.cbz","5_Volume_2_Episode.cbz"] +cover: "00000000_004000.webp" +webpage: "https://yenpress.com/titles/9780316412889-your-name-vol-2-manga" +--- + +The second installment of the manga adaptation of the film that took the world by storm! diff --git a/_tomes/en/your-name-manga/3.md b/_tomes/en/your-name-manga/3.md new file mode 100644 index 0000000..0fd3871 --- /dev/null +++ b/_tomes/en/your-name-manga/3.md @@ -0,0 +1,11 @@ +--- +title: "Vol. 3" +date: "2018-04-10" +isbn: "0316521205, 9780316521208" +gbooks: "k_IzDwAAQBAJ" +chapters: ["6_Volume_3_Episode.cbz","7_Volume_3_Episode.cbz","8_Volume_3_Episode.cbz"] +cover: "00000000_007000.webp" +webpage: "https://yenpress.com/titles/9780316521178-your-name-vol-3-manga" +--- + +The third installment of the manga adaptation of the film that took the world by storm!

To save Mitsuha and all of Itomori from the comet Tiamat, Taki joins up with Saya-chin and Tesshi to evacuate the town. But Mitsuha's father is stubborn and refuses to listen... diff --git a/_tomes/en/your-name-manga/index.md b/_tomes/en/your-name-manga/index.md new file mode 100644 index 0000000..aa4486b --- /dev/null +++ b/_tomes/en/your-name-manga/index.md @@ -0,0 +1,11 @@ +--- +layout: "index" +permalink: "/en/your-name-manga/" +title: "your name. (manga)" +authors: "Makoto Shinkai" +publisher: "Yen Press LLC" +folder: "en" +cover: "00000000_001000.webp" +cover2: "00000000_007000.webp" +webpage: "https://yenpress.com/series/your-name-manga" +--- \ No newline at end of file diff --git a/_tomes/it/cuore.md b/_tomes/it/cuore.md new file mode 100644 index 0000000..bf8f6b1 --- /dev/null +++ b/_tomes/it/cuore.md @@ -0,0 +1,15 @@ +--- +title: "Cuore" +authors: "Edmondo De Amicis" +publisher: "Liber Liber" +webpage: "https://liberliber.it/autori/autori-d/edmondo-de-amicis/cuore/" +date: "2013-10-09" +isbn: "9788897313038" +gbooks: "fHZUAwAAQBAJ" +cover: "copertina.jpg" +file: "de_amicis_cuore.epub" +--- + +> Oggi primo giorno di scuola. Passarono come un sogno quei tre mesi di vacanza in campagna! Mia madre mi condusse questa mattina alla Sezione Baretti a farmi inscrivere per la terza elementare: io pensavo alla campagna e andavo di mala voglia. Tutte le strade brulicavano di ragazzi; le due botteghe di libraio erano affollate di padri e di madri che compravano zaini, cartelle e quaderni, e davanti alla scuola s’accalcava tanta gente che il bidello e la guardia civica duravan fatica a tenere sgombra la porta. Vicino alla porta, mi sentii toccare una spalla: era il mio maestro della seconda, sempre allegro, coi suoi capelli rossi arruffati, che mi disse: – Dunque, Enrico, siamo separati per sempre? – Io lo sapevo bene; eppure mi fecero pena quelle parole. Entrammo a stento. Signore, signori, donne del popolo, operai, ufficiali, nonne, serve, tutti coi ragazzi per una mano e i libretti di promozione nell’altra, empivan la stanza d’entrata e le scale, facendo un ronzio che pareva d’entrare in un teatro. Lo rividi con piacere quel grande camerone a terreno, con le porte delle sette classi, dove passai per tre 14 anni quasi tutti i giorni. C’era folla, le maestre andavano e venivano. + +Il romanzo Cuore (1886) descrive le vicende di un bambino di III elementare lungo lo svolgersi dell’anno scolastico; alla trama principale si mescolano “racconti” sentimentali e patriottici (Dagli Appennini alle Ande; La piccola vedetta lombarda; Il piccolo scrivano fiorentino; ecc.). Il libro, di tenore paternalistico e moraleggiante, godette di moltissima fortuna e fu tradotto in numerose lingue. \ No newline at end of file diff --git a/_tomes/it/exit-reality.md b/_tomes/it/exit-reality.md new file mode 100644 index 0000000..f1dd029 --- /dev/null +++ b/_tomes/it/exit-reality.md @@ -0,0 +1,18 @@ +--- +title: "Exit reality" +subtitle: "vaporwave, backrooms, weirdcore e altri paesaggi oltre la soglia" +authors: "Valentina Tanni" +publisher: "Nero" +year: 2023 +isbn: "8880562096, 9788880562092" +gbooks: "Q-gm0AEACAAJ" +file: "annas-arch-aa91e77fc0b9.epub" +cover: "568c4be03af8ef5f09ffa8ad7defc4cb11bd7554dfd588671c1042962a617f14.jpg" +webpage: "https://www.neroeditions.com/product/exit-reality/" +--- + +> «Internet è un’entità aliena», annunciava David Bowie nel 1999: oggi la profezia si è avverata, e i nostri strumenti digitali sono diventati portali magici dalle proprietà misteriose, finestre che affacciano su una dimensione al limite tra sogno e realtà. + +> Oltre lo specchio degli schermi che teniamo comodamente in tasca, abbiamo scoperto una regione infestata da presenze strane – a volte minacciose, a volte surreali, a volte affascinanti, altre volte insensate. Sono le stesse presenze che, negli ultimi quindici anni, hanno plasmato le cosiddette «estetiche di internet», quell’insieme di sottoculture, narrazioni popolari e linguaggi visivi e sonori grazie ai quali l’entità aliena si è finalmente dichiarata al genere umano. La rete si rivela allora per quello che davvero è: una soglia tanto fisica quanto mentale in cui accadono cose bizzarre, il tempo viene deformato, e noi ci ritroviamo ad abitare una dimensione intermedia, un territorio che non è «né di qua né di là». + +Exit reality è il primo tentativo di mappare un mondo che, intriso di spiazzanti qualità allucinatorie, ci appare come un pianeta parallelo emerso dalle galassie del codicespazio. A partire dall’avvento della vaporwave, che nei primi anni Dieci infuse di qualità fantasmatiche l’immaginario nativo della rete, Valentina Tanni ci accompagna in una discesa tra i livelli che passa per l’orrore silenzioso delle backrooms, sfiora l’ossessione per la stimolazione sensoriale dell’ASMR, attraversa il surrealismo algoritmico del weirdcore, e approda alle pratiche pseudomagiche del reality shifting e dei rituali memetici. Il tutto, mentre restiamo comodamente seduti davanti allo schermo, all’interno di una battlestation pronta a decollare per un viaggio astrale senza ritorno, eternamente intrappolati nello spazio liminale nato dal rapporto, ormai inscindibile, tra le visioni dell’essere umano e i sogni della Macchina. \ No newline at end of file diff --git a/_tomes/it/scottecs-gigazine/0-numero-zero-xl.md b/_tomes/it/scottecs-gigazine/0-numero-zero-xl.md new file mode 100644 index 0000000..91ae7c7 --- /dev/null +++ b/_tomes/it/scottecs-gigazine/0-numero-zero-xl.md @@ -0,0 +1,10 @@ +--- +title: "0 - Numero Zero XL" +webpage: "https://gigaciao.com/collections/scottecs-gigazine/products/scottecs-gigazin-volume-0-prova" +file: "numero zero_XL_OK.pdf" +cover: "0.jpg" +--- + +Ecco a voi la versione DIGITALE del ricercatissimo Numero Zero, adesso disponibile in versione XL, con più contenuti ma sempre GRATIS! +Se non siete riusciti a recuperarlo in versione cartacea, o se ci siete riusciti, ma volete leggerne una versione espansa, scaricatela ora! +(oppure non fatelo non vi stiamo mica obbligando ciao) diff --git a/_tomes/it/scottecs-gigazine/1-un-nuovo-inizio.md b/_tomes/it/scottecs-gigazine/1-un-nuovo-inizio.md new file mode 100644 index 0000000..915716c --- /dev/null +++ b/_tomes/it/scottecs-gigazine/1-un-nuovo-inizio.md @@ -0,0 +1,12 @@ +--- +title: "1 - Un nuovo inizio" +webpage: "https://gigaciao.com/collections/scottecs-gigazine/products/preordina-scottecs-gigazine-un-nuovo-inizio" +file: "annas-arch-1028a5e42eb5.pdf" +cover: "1.jpg" +date: "2023-07-05" +--- + +La nuovissima rivista firmata da Sio, torna con una nuova forma e un nuovo nome! Scottecs Gigazine è più grande, ha più pagine, ha più autori, è più bella e soprattutto più saporita! (Non mangiatela per favore) + +Piena di tanti autori, autrici, ospiti e storie speciali, tra cui: Fraffrog, Keison, Dado, Barbascura, Kenobisboch, Power Pizza, le Mega Tree Majokko e ovviamente una tonnellata di fumetti di Sio! +Scoprite tutte le novità di Scottecs Gigazine, ordinala ora! diff --git a/_tomes/it/scottecs-gigazine/2-bruco-gianluco-ipsilon.md b/_tomes/it/scottecs-gigazine/2-bruco-gianluco-ipsilon.md new file mode 100644 index 0000000..bed1170 --- /dev/null +++ b/_tomes/it/scottecs-gigazine/2-bruco-gianluco-ipsilon.md @@ -0,0 +1,10 @@ +--- +title: "2 - Bruco Gianluco Ipsilon" +webpage: "https://gigaciao.com/collections/scottecs-gigazine/products/scottecs-gigazine-2-bruco-gianluco-ipsilon" +file: "annas-arch-77613f8b2ea8.pdf" +cover: "2.jpg" +date: "2023-08-02" +--- + +In questo numero abbiamo voluto omaggiare l'eroe spaziale dello spazio più forte che sia mai esisto (nello spazio): BRUCO GIANLUCO! +All'interno troverete 2 storie lunghe completamente inedite dedicate al nostro bruco, insieme a tantissimi altri contenuti di qualità dei nostri autori e autrici: Fraffrog, Giacomo Bevilacqua, Dado, Barbascura X, Daw e Jack Moruz, Kenobisboch e Power Pizza! \ No newline at end of file diff --git a/_tomes/it/scottecs-gigazine/3-fufos-e-la-pallina-di-apollo.md b/_tomes/it/scottecs-gigazine/3-fufos-e-la-pallina-di-apollo.md new file mode 100644 index 0000000..71ba387 --- /dev/null +++ b/_tomes/it/scottecs-gigazine/3-fufos-e-la-pallina-di-apollo.md @@ -0,0 +1,12 @@ +--- +title: "3 - Fufos e la pallina di Apollo" +webpage: "https://gigaciao.com/collections/scottecs-gigazine/products/scottecs-gigazine-3-fufos-e-la-pallina-di-apollo" +file: "annas-arch-eee2dd46ee7c.pdf" +cover: "3.jpg" +date: "2023-09-02" +--- + +Eccolo, il numero 3 di Scottecs Gigazine! Questo è un fumetto che abbiamo fortemente voluto inserire nel nostro catalogo editoriale, in quanto opera dal gusto classico e di raffinata cultura, ma principalmente perché altrimenti avremmo saltato un mese di pubblicazione e uscire poi col numero 4, senza il 3, sarebbe stato un casino. Vi immaginate? Pensate a quante persone confuse ci avrebbero chiesto "E il 3 non esce?". + +Be', per fortuna non è così! +IL NUMERO 3 DI SCOTTECS GIGAZINE è proprio qui, davanti a voi! (non fisicamente, ma virtualmente... questo è solo un sito internet, però se lo ordinate poi vi arriva anche fisicamente) \ No newline at end of file diff --git a/_tomes/it/scottecs-gigazine/index.md b/_tomes/it/scottecs-gigazine/index.md new file mode 100644 index 0000000..1290340 --- /dev/null +++ b/_tomes/it/scottecs-gigazine/index.md @@ -0,0 +1,9 @@ +--- +layout: "index" +permalink: "/it/scottecs-gigazine/" +title: "Scottecs Gigazine" +publisher: "Gigaciao" +webpage: "https://gigaciao.com/collections/scottecs-gigazine" +cover: "1-un-nuovo-inizio/1.jpg" +cover2: "3-fufos-e-la-pallina-di-apollo/3.jpg" +--- \ No newline at end of file diff --git a/_tomes/ja/mens-non-no/457.md b/_tomes/ja/mens-non-no/457.md new file mode 100644 index 0000000..da4a46e --- /dev/null +++ b/_tomes/ja/mens-non-no/457.md @@ -0,0 +1,4 @@ +--- +cover: "cover.jpg" +file: "MEN'S NON-NO 25年1月号.pdf" +--- \ No newline at end of file diff --git a/_tomes/ja/mens-non-no/index.md b/_tomes/ja/mens-non-no/index.md new file mode 100644 index 0000000..19397ce --- /dev/null +++ b/_tomes/ja/mens-non-no/index.md @@ -0,0 +1,7 @@ +--- +layout: "index" +permalink: "/ja/mens-non-no/" +title: "メンズノンノ | MEN'S NON-NO" +cover: "457/cover.jpg" +webpage: "https://www.mensnonno.jp/" +--- \ No newline at end of file diff --git a/assets/scss/_layout.scss b/assets/scss/_layout.scss index fc485bd..6d52590 100644 --- a/assets/scss/_layout.scss +++ b/assets/scss/_layout.scss @@ -35,6 +35,7 @@ top: 0; left: 0; z-index: 1; + word-break: break-word; @media (min-width: $breakpoint-medium) { padding: 21rem 0 0; @@ -60,10 +61,8 @@ display: flex; flex-wrap: wrap; - @media (min-width: $breakpoint-xsmall) { - li { - width: 100%; - } + li { + width: 100%; } @media (min-width: $breakpoint-small) {