From 6f4fcc5aaa56b69311e6c219a70bddafdf0b40f7 Mon Sep 17 00:00:00 2001 From: Mahdi Dibaiee Date: Fri, 4 Nov 2022 11:13:14 +0000 Subject: [PATCH] iran 1401 timeline --- _config.yml | 1 + _posts/2022-11-04-iran-1401-timeline.md | 93 +++++++++++++++++++++++++ _sass/timeline.scss | 7 ++ css/timeline.scss | 71 +++++++++++++++++++ 4 files changed, 172 insertions(+) create mode 100644 _posts/2022-11-04-iran-1401-timeline.md create mode 100644 _sass/timeline.scss create mode 100644 css/timeline.scss diff --git a/_config.yml b/_config.yml index 725dcd9..9b2c83b 100644 --- a/_config.yml +++ b/_config.yml @@ -29,3 +29,4 @@ authors: scholar: style: apa + diff --git a/_posts/2022-11-04-iran-1401-timeline.md b/_posts/2022-11-04-iran-1401-timeline.md new file mode 100644 index 0000000..2803fb6 --- /dev/null +++ b/_posts/2022-11-04-iran-1401-timeline.md @@ -0,0 +1,93 @@ +--- +layout: post +title: "Timeline: Iran's 2022 Protests" +subtitle: "گاه‌نمای خروش سراسری ایران ۱۴۰۱" +date: 2022-11-04 00:00:00 +permalink: iran-1401-timeline/ +categories: iran, history +published: false +author: Mahdi +custom_head: +--- + +
+
+
+ September 14th, 2022 +

Mahsa Amini was arrested by Guidance Patrol (morality + police)

+
+
+ ۲۲ شهریور ۱۴۰۱ +

بازداشت مهسا امینی بدست «گشت ارشاد»

+
+
+ +
+
+ September 16th, 2022 +

+ Mahsa Amini dies in a hospital in Tehran. Protests start in Tehran in + front of the Kasra hospital where she died. Security forces used pepper + spray and arrested several protestors + + [1] +. +

+
+
+ ۲۴ شهریور ۱۴۰۱ +

+ جان باختن مهسا امینی در بیمارستان. آغاز خروش روبروی بیمارستان کسری که + مهسا در آن جان باخت. ماموران امنیتی دسته‌ای از معترضان را دستگیر + کردند. + + [1] +

+
+
+ +
+
+ September 17th, 2022 +

+ Mahsa Amini is buried in her hometown, Saqqez. Hundreds of people + gathered for her funeral and chanted anti-government slogans, and some + women removed their hijab in protest. [1] Security forces opened fire at + protestors when they marched towards the local governor's office. [2] + + Protests spread to Kurdistan province's capital, Sanandaj. Kurdish + organisations were calling for general strike and the Islamic Republic + was limiting internet access. [1] + +
+ The inscription on her tombstone became a slogan for protests:
+ + "Beloved Žina [Mahsa], you will not die. Your name will become a code + [rallying call]" [2] +

+
+
+ ۲۵ شهریور ۱۴۰۱ +

+ پیکر مهسا امینی در زادگاه خود، سقز به خاک سپرده شد. صدها نفر برای مراسم + ختم او گردهم آمدند و همزمان شعار‌های مخالف رژیم سردادند [1] و برخی از + خانم‌ها با منشی اعتراضی حجاب از سر خود برداشتند. [2] + +
+ سنگ نبشته‌ی آرامگاه مهسا چامه‌ای برای اعتراضات شد:
+ + «ژینا جان تو نمی‌میری. نامت یک نماد می‌شود» [2] +

+
+
+
diff --git a/_sass/timeline.scss b/_sass/timeline.scss new file mode 100644 index 0000000..2c8c87c --- /dev/null +++ b/_sass/timeline.scss @@ -0,0 +1,7 @@ +.timeline { + .event { + &::before { + + } + } +} diff --git a/css/timeline.scss b/css/timeline.scss new file mode 100644 index 0000000..fdeb0b9 --- /dev/null +++ b/css/timeline.scss @@ -0,0 +1,71 @@ +--- +# Only the main Sass file needs front matter (the dashes are enough) +--- +.timeline { + .event { + position: relative; + min-height: 150px; + + // The dot + &::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + border-radius: 50%; + background: black; + position: absolute; + left: calc(50% - 8px); + } + + // Line connecting the dot to the next dot + &::after { + content: ""; + display: inlne-block; + width: 2px; + height: 100%; + background: black; + position: absolute; + left: calc(50% - 1px); + top: 16px; + } + + .date-en, .date-fa { + font-size: 11px; + display: inline-block; + position: absolute; + } + + .left, .right { + width: 47%; + height: auto; + padding-bottom: 30px; + + p { + position: relative; + top: 30px; + } + } + + .left { + position: relative; + text-align: left; + left: 0; + } + + .right { + position: absolute; + text-align: right; + direction: rtl; + right: 0; + top: 0; + } + + .date-en { + right: 0; + } + .date-fa { + left: 0; + } + } +}