blog-static/posts/shame/index.html
2025-01-05 19:19:38 +00:00

2744 lines
47 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<!-- `site.alt_lang` can specify a language different from the UI -->
<html lang="en" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f7f7f7">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#1b1b1e">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta
name="viewport"
content="width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover"
><!-- Setup Open Graph image -->
<!-- Begin Jekyll SEO tag v2.8.0 -->
<meta name="generator" content="Jekyll v4.3.4" />
<meta property="og:title" content="Why is no one talking about the shame?" />
<meta name="author" content="Quinn Morrigan" />
<meta property="og:locale" content="en" />
<meta name="description" content="Shame is intertwined with my identity as a queer person. In this article I explore my own relationship with shame and pride in relation to my sexual orientation." />
<meta property="og:description" content="Shame is intertwined with my identity as a queer person. In this article I explore my own relationship with shame and pride in relation to my sexual orientation." />
<link rel="canonical" href="https://bookshelf.thequinn.fr/posts/shame/" />
<meta property="og:url" content="https://bookshelf.thequinn.fr/posts/shame/" />
<meta property="og:site_name" content="Quinns Bookshelf" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2023-02-10T14:13:00+01:00" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Why is no one talking about the shame?" />
<meta name="twitter:site" content="@twitter_username" />
<meta name="twitter:creator" content="@Quinn Morrigan" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"Quinn Morrigan"},"dateModified":"2023-02-10T14:13:00+01:00","datePublished":"2023-02-10T14:13:00+01:00","description":"Shame is intertwined with my identity as a queer person. In this article I explore my own relationship with shame and pride in relation to my sexual orientation.","headline":"Why is no one talking about the shame?","mainEntityOfPage":{"@type":"WebPage","@id":"https://bookshelf.thequinn.fr/posts/shame/"},"url":"https://bookshelf.thequinn.fr/posts/shame/"}</script>
<!-- End Jekyll SEO tag -->
<title>Why is no one talking about the shame? | Quinn's Bookshelf
</title>
<!--
The Favicons for Web, Android, Microsoft, and iOS (iPhone and iPad) Apps
Generated by: https://realfavicongenerator.net/
-->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicons/favicon-16x16.png">
<link rel="manifest" href="/assets/img/favicons/site.webmanifest">
<link rel="shortcut icon" href="/assets/img/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="Quinn's Bookshelf">
<meta name="application-name" content="Quinn's Bookshelf">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/img/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Resource Hints -->
<link rel="preconnect" href="https://fonts.googleapis.com" >
<link rel="dns-prefetch" href="https://fonts.googleapis.com" >
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="dns-prefetch" href="https://fonts.gstatic.com" >
<link rel="preconnect" href="https://cdn.jsdelivr.net" >
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" >
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="/assets/css/jekyll-theme-chirpy.css">
<!-- Web Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Source+Sans+Pro:wght@400;600;700;900&display=swap">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/all.min.css">
<!-- 3rd-party Dependencies -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tocbot@4.29.0/dist/tocbot.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/loading-attribute-polyfill@2.1.1/dist/loading-attribute-polyfill.min.css">
<!-- Image Popup -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox@3.3.0/dist/css/glightbox.min.css">
<!-- JavaScript -->
<!-- Switch the mode between dark and light. -->
<script type="text/javascript">
class ModeToggle {
static get MODE_KEY() {
return 'mode';
}
static get MODE_ATTR() {
return 'data-mode';
}
static get DARK_MODE() {
return 'dark';
}
static get LIGHT_MODE() {
return 'light';
}
static get ID() {
return 'mode-toggle';
}
constructor() {
let self = this;this.sysDarkPrefers.addEventListener('change', () => {
if (self.hasMode) {
self.clearMode();
}
self.notify();
});
if (!this.hasMode) {
return;
}
if (this.isDarkMode) {
this.setDark();
} else {
this.setLight();
}
}
get sysDarkPrefers() {
return window.matchMedia('(prefers-color-scheme: dark)');
}
get isPreferDark() {
return this.sysDarkPrefers.matches;
}
get isDarkMode() {
return this.mode === ModeToggle.DARK_MODE;
}
get hasMode() {
return this.mode != null;
}
get mode() {
return sessionStorage.getItem(ModeToggle.MODE_KEY);
}get modeStatus() {
if (this.hasMode) {
return this.mode;
} else {
return this.isPreferDark ? ModeToggle.DARK_MODE : ModeToggle.LIGHT_MODE;
}
}
setDark() {
document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.DARK_MODE);
sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.DARK_MODE);
}
setLight() {
document.documentElement.setAttribute(ModeToggle.MODE_ATTR, ModeToggle.LIGHT_MODE);
sessionStorage.setItem(ModeToggle.MODE_KEY, ModeToggle.LIGHT_MODE);
}
clearMode() {
document.documentElement.removeAttribute(ModeToggle.MODE_ATTR);
sessionStorage.removeItem(ModeToggle.MODE_KEY);
}notify() {
window.postMessage(
{
direction: ModeToggle.ID,
message: this.modeStatus
},
'*'
);
}
flipMode() {
if (this.hasMode) {
this.clearMode();
} else {
if (this.isPreferDark) {
this.setLight();
} else {
this.setDark();
}
}
this.notify();
}
}
const modeToggle = new ModeToggle();
</script>
<script data-goatcounter="https://stats.thequinn.fr/count"
async src="//stats.thequinn.fr/count.js"></script>
<!-- A placeholder to allow defining custom metadata -->
</head>
<body>
<!-- The Side Bar -->
<aside aria-label="Sidebar" id="sidebar" class="d-flex flex-column align-items-end">
<header class="profile-wrapper">
<a href="/" id="avatar" class="rounded-circle"><img src="/commons/avatar.webp" width="112" height="112" alt="avatar" onerror="this.style.display='none'"></a>
<h1 class="site-title">
<a href="/">Quinn's Bookshelf</a>
</h1>
<p class="site-subtitle fst-italic mb-0">A blog about writing, mental health and other LGBTQ+ things</p>
</header>
<!-- .profile-wrapper -->
<nav class="flex-column flex-grow-1 w-100 ps-0">
<ul class="nav">
<!-- home -->
<li class="nav-item">
<a href="/" class="nav-link">
<i class="fa-fw fas fa-home"></i>
<span>HOME</span>
</a>
</li>
<!-- the real tabs -->
<li class="nav-item">
<a href="/categories/" class="nav-link">
<i class="fa-fw fas fa-stream"></i>
<span>CATEGORIES</span>
</a>
</li>
<!-- .nav-item -->
<li class="nav-item">
<a href="/tags/" class="nav-link">
<i class="fa-fw fas fa-tags"></i>
<span>TAGS</span>
</a>
</li>
<!-- .nav-item -->
<li class="nav-item">
<a href="/archives/" class="nav-link">
<i class="fa-fw fas fa-archive"></i>
<span>ARCHIVES</span>
</a>
</li>
<!-- .nav-item -->
<li class="nav-item">
<a href="/about/" class="nav-link">
<i class="fa-fw fas fa-info-circle"></i>
<span>ABOUT</span>
</a>
</li>
<!-- .nav-item -->
</ul>
</nav>
<div class="sidebar-bottom d-flex flex-wrap align-items-center w-100">
<button type="button" class="btn btn-link nav-link" aria-label="Switch Mode" id="mode-toggle">
<i class="fas fa-adjust"></i>
</button>
<span class="icon-border"></span>
<a
href="javascript:location.href = 'mailto:' + ['quinn.morrigan','proton.me'].join('@')"
aria-label="email"
>
<i class="fas fa-envelope"></i>
</a>
<a
href="https://courgett.es/@cookie"
aria-label="mastodon"
target="_blank"
rel="noopener noreferrer me"
>
<i class="fab fa-mastodon"></i>
</a>
<a
href="https://pixelfed.fr/@cookie"
aria-label="pixelfed"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-instagram"></i>
</a>
<a
href="/feed.xml"
aria-label="rss"
>
<i class="fas fa-rss"></i>
</a>
</div>
<!-- .sidebar-bottom -->
</aside>
<!-- #sidebar -->
<div id="main-wrapper" class="d-flex justify-content-center">
<div class="container d-flex flex-column px-xxl-5">
<!-- The Top Bar -->
<header id="topbar-wrapper" aria-label="Top Bar">
<div
id="topbar"
class="d-flex align-items-center justify-content-between px-lg-3 h-100"
>
<nav id="breadcrumb" aria-label="Breadcrumb">
<span>
<a href="/">Home</a>
</span>
<span>Why is no one talking about the shame?</span>
</nav>
<!-- endof #breadcrumb -->
<button type="button" id="sidebar-trigger" class="btn btn-link">
<i class="fas fa-bars fa-fw"></i>
</button>
<div id="topbar-title">
Post
</div>
<button type="button" id="search-trigger" class="btn btn-link">
<i class="fas fa-search fa-fw"></i>
</button>
<search id="search" class="align-items-center ms-3 ms-lg-0">
<i class="fas fa-search fa-fw"></i>
<input
class="form-control"
id="search-input"
type="search"
aria-label="search"
autocomplete="off"
placeholder="Search..."
>
</search>
<button type="button" class="btn btn-link text-decoration-none" id="search-cancel">Cancel</button>
</div>
</header>
<div class="row flex-grow-1">
<main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4">
<!-- Refactor the HTML structure -->
<!--
In order to allow a wide table to scroll horizontally,
we suround the markdown table with `<div class="table-wrapper">` and `</div>`
-->
<!--
Fixed kramdown code highlight rendering:
https://github.com/penibelst/jekyll-compress-html/issues/101
https://github.com/penibelst/jekyll-compress-html/issues/71#issuecomment-188144901
-->
<!-- Change the icon of checkbox -->
<!-- Handle images -->
<!-- Add header for code snippets -->
<!-- Create heading anchors -->
<!-- return -->
<article class="px-1">
<header>
<h1 data-toc-skip>Why is no one talking about the shame?</h1>
<p class="post-desc fw-light mb-4">Shame is intertwined with my identity as a queer person. In this article I explore my own relationship with shame and pride in relation to my sexual orientation.</p>
<div class="post-meta text-muted">
<!-- published date -->
<span>
Posted
<!--
Date format snippet
See: ${JS_ROOT}/utils/locale-dateime.js
-->
<time
data-ts="1676034780"
data-df="ll"
data-bs-toggle="tooltip" data-bs-placement="bottom"
>
Feb 10, 2023
</time>
</span>
<!-- lastmod date -->
<div class="d-flex justify-content-between">
<!-- author(s) -->
<span>
By
<em>
Quinn Morrigan
</em>
</span>
<div>
<!-- pageviews -->
<!-- read time -->
<!-- Calculate the post's reading time, and display the word count in tooltip -->
<!-- words per minute -->
<!-- return element -->
<span
class="readtime"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="2434 words"
>
<em>13 min</em> read</span>
</div>
</div>
</div>
</header>
<div class="content">
<p><em>This article discusses themes of internalised homophobia, self-loathing and rejection.</em></p>
<h2 id="shame"><span class="me-2">Shame</span><a href="#shame" class="anchor text-muted"><i class="fas fa-hashtag"></i></a></h2>
<blockquote>
<p>Why is no one talking about the shame?</p>
<p><em>Contrapoints, 2020</em></p>
</blockquote>
<p>I have watched and rewatched Contrapoints video about <a href="https://www.youtube.com/watch?v=K7WvHTl_Q7I">shame</a> many times, in different contexts and life situations, with and without other people around. Every time I have found something different in it, a new layer, angle, a different focus. One time it was a parallel with the “friendship” she talks about in the video. One time it was as the partner of a trans woman and what that means for her.</p>
<p>But that first time, in December of 2020, was the most Earth-shattering time for me.</p>
<p>The one at which I felt the most shame myself.&lt;/br&gt;
Watching that video that evening led to a very dark and lonely night. I think of it as one of those single, life-defining moments that you only get a few of in your life. Realising my attraction to women led me down a very dark thought spiral that took me months to completely get out of.&lt;/br&gt;</p>
<p>Before that video. I figured that as long as I kept it to myself, as long as no one knew, I would be safe. As long as I repressed any bad thoughts immediately when they came up, I would be safe. As long as I wasnt thinking about it, had never tried anything, I couldnt be sure, so I was safe.&lt;/br&gt;
But that video convinced me. And thats what made me sink.</p>
<p>The most overwhelming feeling for me that night was disgust about myself, to the point where I was feeling physically ill.
I figured my social life was over, my family life was over, my relationship was over. Everything I had worked for and built up until this moment felt like it was going to fall apart in an instant.</p>
<p>Before that point, I had found my own self-worth and validation in the traditional social markers of success. I had just finished my studies, landed a fulfilling job, and, more importantly, I was in a sfuccessful long-term relationship. I felt like I had it all figured out. Of course I sometimes felt empty, like if that was success and I wouldnt ever get anything more out of life, what was really the point? It didnt bring me the fulfillment I thought it would. &lt;/br&gt;
But still, having to destroy it all and start over? Was I really ready to sacrifice everything I had strived for up until this moment?</p>
<p>People would be disappointed, it was going to change the way they looked at me, people would reject me, they would think Im wrong and judge me, or they would be afraid of me, or they would think I was just lying for attention.
I was sad, and I was ashamed.</p>
<p>I was alone, I felt like there was nobody I could turn to. I thought my queer friends, whod had that part figured out for a long time, would make fun of me. Theyd be surprised I didnt figure it out sooner.</p>
<p>I was ashamed of feeling like I couldnt live up to them, because I had idealized them. I had made them up to be so much stronger than myself. I thought they never doubted themselves, and were out in every single area of their life and were so confident and proud. I thought shame was a concept that was alien to them, because theyd been comfortable with who they were for so long. Because I always saw them being comfortable around me.
I thought about reaching out, asking for advice, for acceptance, but I just couldnt find it in me to say the words out loud, or to write them down. If they were always so proud and comfortable, they probably wouldnt understand me. If theyd been through that phase, I thought, it would have been long ago, a thing of the past. They wouldnt remember what it was like anymore.
I imagined my queer friends as unattainable, because it was better to be alone than to be rejected by them.</p>
<p>I was ashamed that I had hidden it from myself for so long, that I was so stupid for not realising it sooner.</p>
<p>I was ashamed that, even after all of this, my first reflex was still to hide.</p>
<p>I was ashamed that, in retrospect, everything I had said and done before this point felt like a lie.</p>
<p>I was ashamed because I couldnt see any other option than to keep lying, building up on the lies again and again until there would be no way out.&lt;/br&gt;
There is a pain in knowing you arent be able to be yourself completely with someone else. This feeling that you will never be able to completely connect with them, because you dont feel safe enough to be authentic with them. It creates a distance, a ledge between you that is insurmountable. I thought I would feel like that for the rest of my life. If I could never really connect with anyone, it meant that no matter how many connections I made, I would always be truly alone.</p>
<p>But the thing I was the most ashamed of was my attraction to women itself. I felt like I was no better than the men that are sexualising women all the time, like I was a wolf in the middle of a hen house.</p>
<p>I was ashamed because I thought other women would be afraid of me, like they are of men. Not really afraid, but suspicious. Vigilant.
Like if I went to a space where women feel safe, it wouldnt feel safe to them anymore.</p>
<p>That is not true.</p>
<p><em>That is not true.</em></p>
<h2 id="why-am-i-not-talking-about-the-shame"><span class="me-2">Why am I not talking about the shame?</span><a href="#why-am-i-not-talking-about-the-shame" class="anchor text-muted"><i class="fas fa-hashtag"></i></a></h2>
<p>I was ashamed of so much at the beginning of my coming to terms with my sexuality, that there were too many things for me to really see the shame surrounding shame itself.
And even though I am deeply aware of my shame now, as I am still pretty closeted and that in itself is caused by my shame, I rarely see depictions of shame on social media or in shows and movies that I watch. Teenagers in <em>Sex Education</em> have more confidence in themselves and their identity than I do as an adult.</p>
<p>As Contrapoints puts it:</p>
<blockquote>
<p>Its difficult and risky for me to admit these feelings, because visible queer people are supposed to perform pride. Why is no one talking about the shame? Because were ashamed of the shame. But we shouldnt be. The shame is a natural result of shaming.</p>
<p>I grew up in a media era where trans women were usually represented as vomit-inducing monstrosities who deserve the violence they bring upon themselves by existing. And I started my transition in the first year of the Trump administration, where theres been constant vilification of trans people in the press, invading womens bathrooms, forcing our insanity on children, and destroying Western civilization with our authoritarian pronouns. Its hard to express just the daily humiliation of being a trans woman under these conditions.</p>
<p>Then theres the little jabs people throw at you, like what my laser technician recently told me: “You must be very courageous to transition, because that is not socially acceptable.”</p>
</blockquote>
<p>She talks about the pressure she feels as a public figure to show a good, aspiration example. At the end of the day, we all want to show our best, strongest image to the world. This is especially true when other people are looking up to these creators as role models, looking up to them for validation and proof that they can find a way to be proud like them.</p>
<p>Mae Martins show <em>Feel good</em> does depict a woman who is, at first, ashamed of being in a relationship with another woman. We could think, I used to think that, as soon as shes come out to her homophobic friends, she would be done with the shame. As if shame is a one time step before coming out, that evaporates as soon as you are out to the world and have accepted yourself for who you are.
It is based on this false dichotomy between being out and being closeted. There is such a thing as being both out and closeted at the same time. Be it a dinner party where youre out to some people and not others, or just going to a job where youre not out and coming back to your safe space at home to be yourself.</p>
<p>Just because someone does videos on the internet about being queer, doesnt mean that they are out to everyone they ever talked to. Coming out is a never-ending process in a society that expects you to be in the norm, it is a tiring process that, according to what Ive heard, doesnt get that much easier with time.</p>
<p>We dont talk about the shame because we are forced to have thick skin in a world that is unforgiving to say the least.</p>
<p>We dont talk about shame because no one else is talking about it. There are other subjects we might feel are more important, or its just not usually brought up in conversation. It makes us think we are alone in it. That we are the only ones feeling shame, that we are weaker than the others, thus repeating the cycle.</p>
<p>We dont talk about shame because its such an inherent part of being queer and its been in our life for so long that we have learned to ignore it. As queer people, we are made to be ashamed of who we are even before we can really comprehend our queerness. Other kids dont wait for your coming out to call you gay in primary school. We dont have to be conscious of what makes us different for people to cast us aside. When you have been traumatized by bullying from a young age, simply talking about it can be too painful. We dont talk about it because we want to protect ourselves, and others, from our own suffering.</p>
<p>We hide our suffering because when our right to exist is threatened daily, showing any sign of weakness can feel as giving the other side the exact weapons they need to attack us. We have to show as strong face as a survival mechanism, because without that strength, if you cant keep your head up, it can feel like drowning. It makes me think of a trend of short videos I saw around Pride month, where older, mostly straight people, would give out free hugs to LGBT youths or saying that if their family wouldnt accept them, they would become their parents. The emotional response of these young people feeling accepted by a parental figure, as well as the response I had to these videos as a closeted queer person. made me realize all of the unspoken loneliness and rejection we might feel. We have to show a strong face when we need to move away from our families for our own safety, but that leaves us in need of a community, of a sense of belonging. Sometimes we dont want to talk about the shame because we want a moment of respite when weve finally found a space we are comfortable in.</p>
<p>In a world where a few decades ago, being LGBT was considered a mental illness, there is still a lot of stigma around poor mental health in general. On top of that, lots of people on the far-right using LGBT peoples mental health issues as evidence that their gender identities or sexual orientations make them broken.</p>
<p>Even though this shame is caused by systemic issues, we still see it as an individual moral failure within ourselves. We feel as if we as individuals are fully responsible for how we feel about ourselves and our own queerness, when weve been bombarded since before we could talk with homophobic, heterocentric, transphobic messages. We have to learn that what we consider to be flaws in our character are more often than not symptoms of a society that makes no effort to give us a space to be safe and accepted. Looking into concepts such as <strong>minority stress</strong> can help us get out of this individual failure mindset, and give us the tools to actually combat the root cause of the shame by bringing the change we need in our society.</p>
<h2 id="pride"><span class="me-2">Pride</span><a href="#pride" class="anchor text-muted"><i class="fas fa-hashtag"></i></a></h2>
<p>I didnt feel pride at all for a long time after coming out to myself. I didnt feel pride until I began trying to accept myself, and authentically connected with some of the people that matter to me.</p>
<p>Its only through honesty, with myself and with others, that I was able to achieve that.</p>
<p>Only by being honest with them, I figured that my idealized friends were struggling with pretty much the same things I was. My friend who Id assumed was casually out in every single aspect of her life was actually not. If she seemed so comfortable every time I saw her, it was because she felt safe in our friend group, not because she was like that with everyone.</p>
<p>It is so easy to feel shame, because thats the only path that is showed to us, drilled into our brains, before we can even consciously understand it. It takes a lot of work to build enough pride to balance it out. Its not something you can do alone. I remember watching longingly the proud people marching for pride, feeling like I was made differently from them, because that feeling was so foreign to me, I wouldnt ever be able to truly feel it, to be like them. In my mind I was a different type of queer, the weak type.</p>
<p>We need pride because shame is the most powerful tool for society to keep us in line, to prevent us from exposing every social code for what it is, just a masquerade people so desperately want to believe in. We need pride to take up the space that we deserve. We need pride so that we can resist the people who dont want us to exist. We need pride so that we dont disappear. We need pride so that young queers like me dont feel like there is no happy ending waiting for them, that there is no future.</p>
<p>Pride is the opposite of shame and its our only weapon against it, our only way to live, and keep on living. I can imagine a future now, a happy one, and that would not be possible without pride.</p>
</div>
<div class="post-tail-wrapper text-muted">
<!-- categories -->
<div class="post-meta mb-3">
<i class="far fa-folder-open fa-fw me-1"></i>
<a href="/categories/english/">English</a>,
<a href="/categories/reflections/">Reflections</a>
</div>
<!-- tags -->
<div class="post-tags">
<i class="fa fa-tags fa-fw me-1"></i>
<a
href="/tags/coming-out/"
class="post-tag no-text-decoration"
>coming-out</a>
<a
href="/tags/self-acceptance/"
class="post-tag no-text-decoration"
>self-acceptance</a>
</div>
<div
class="
post-tail-bottom
d-flex justify-content-between align-items-center mt-5 pb-2
"
>
<div class="license-wrapper">
This post is licensed under
<a href="https://creativecommons.org/licenses/by/4.0/">
CC BY 4.0
</a>
by the author.
</div>
<!-- Post sharing snippet -->
<div class="share-wrapper d-flex align-items-center">
<span class="share-label text-muted">Share</span>
<span class="share-icons">
<button
id="copy-link"
aria-label="Copy link"
class="btn small"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Copy link"
data-title-succeed="Link copied successfully!"
>
<i class="fa-fw fas fa-link pe-none fs-6"></i>
</button>
</span>
</div>
</div>
<!-- .post-tail-bottom -->
</div>
<!-- div.post-tail-wrapper -->
</article>
</main>
<!-- panel -->
<aside aria-label="Panel" id="panel-wrapper" class="col-xl-3 ps-2 mb-5 text-muted">
<div class="access">
<!-- Get 5 last posted/updated posts -->
<section id="access-lastmod">
<h2 class="panel-heading">Recently Updated</h2>
<ul class="content list-unstyled ps-0 pb-1 ms-1 mt-2">
<li class="text-truncate lh-lg">
<a href="/posts/favoris-decembre/">Lectures, séries et écriture - Décembre 2024</a>
</li>
<li class="text-truncate lh-lg">
<a href="/posts/novembre/">Lectures, séries et écriture - Novembre 2024</a>
</li>
<li class="text-truncate lh-lg">
<a href="/posts/favoris-octobre/">Lectures, écriture et spectacles - Octobre 2024</a>
</li>
<li class="text-truncate lh-lg">
<a href="/posts/writing-social-media/">Does social media sell books, and starting off as a new author - Recent favorites</a>
</li>
<li class="text-truncate lh-lg">
<a href="/posts/writing-like-colleen-hoover/">Writing like Colleen Hoover, what makes a great opening line, and Nanowrimo's stance on AI - Recent favorites</a>
</li>
</ul>
</section>
<!-- #access-lastmod -->
<!-- The trending tags list -->
<section>
<h2 class="panel-heading">Trending Tags</h2>
<div class="d-flex flex-wrap mt-3 mb-1 me-3">
<a class="post-tag btn btn-outline-primary" href="/tags/emotions/">emotions</a>
<a class="post-tag btn btn-outline-primary" href="/tags/relations/">relations</a>
<a class="post-tag btn btn-outline-primary" href="/tags/genre/">genre</a>
<a class="post-tag btn btn-outline-primary" href="/tags/coming-out/">coming-out</a>
<a class="post-tag btn btn-outline-primary" href="/tags/journaling/">journaling</a>
<a class="post-tag btn btn-outline-primary" href="/tags/tech/">tech</a>
<a class="post-tag btn btn-outline-primary" href="/tags/lecture/">lecture</a>
<a class="post-tag btn btn-outline-primary" href="/tags/self-acceptance/">self-acceptance</a>
<a class="post-tag btn btn-outline-primary" href="/tags/writing/">writing</a>
<a class="post-tag btn btn-outline-primary" href="/tags/%C3%A9criture/">écriture</a>
</div>
</section>
</div>
<section id="toc-wrapper" class="d-none ps-0 pe-4">
<h2 class="panel-heading ps-3 mb-2">Contents</h2>
<nav id="toc"></nav>
</section>
</aside>
</div>
<div class="row">
<!-- tail -->
<div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-md-4">
<!-- Recommend the other 3 posts according to the tags and categories of the current post. -->
<!-- The total size of related posts -->
<!-- An random integer that bigger than 0 -->
<!-- Equals to TAG_SCORE / {max_categories_hierarchy} -->
<aside id="related-posts" aria-labelledby="related-label">
<h3 class="mb-4" id="related-label">Further Reading</h3>
<nav class="row row-cols-1 row-cols-md-2 row-cols-xl-3 g-4 mb-4">
<article class="col">
<a href="/posts/a-difficult-child/" class="post-preview card h-100">
<div class="card-body">
<!--
Date format snippet
See: ${JS_ROOT}/utils/locale-dateime.js
-->
<time
data-ts="1669797900"
data-df="ll"
>
Nov 30, 2022
</time>
<h4 class="pt-0 my-2">A difficult child</h4>
<div class="text-muted">
<p>The other day, I bought some queer books, and I suddenly felt invincible. I wanted to shout how proud I was on the street while walking home. My heart burst out from love and kinship for my fellow ...</p>
</div>
</div>
</a>
</article>
<article class="col">
<a href="/posts/killing-butterflies/" class="post-preview card h-100">
<div class="card-body">
<!--
Date format snippet
See: ${JS_ROOT}/utils/locale-dateime.js
-->
<time
data-ts="1666281420"
data-df="ll"
>
Oct 20, 2022
</time>
<h4 class="pt-0 my-2">Killing butterflies</h4>
<div class="text-muted">
<p>This is one of the first poems I wrote when I picked up writing again in November last year. I was at the very beginning of the process of coming to terms with my sexuality. I predominantly felt sh...</p>
</div>
</div>
</a>
</article>
<article class="col">
<a href="/posts/enterrements/" class="post-preview card h-100">
<div class="card-body">
<!--
Date format snippet
See: ${JS_ROOT}/utils/locale-dateime.js
-->
<time
data-ts="1710182280"
data-df="ll"
>
Mar 11, 2024
</time>
<h4 class="pt-0 my-2">Enterrements</h4>
<div class="text-muted">
<p>Raphaël a deux ensembles de costume dans son placard, un bleu marine pour les mariages, et un noir pour les enterrements. Ce matin, il sort le noir et le pose sur la chaise qui est à côté de son li...</p>
</div>
</div>
</a>
</article>
</nav>
</aside>
<!-- #related-posts -->
<!-- Navigation buttons at the bottom of the post. -->
<nav class="post-navigation d-flex justify-content-between" aria-label="Post Navigation">
<a
href="/posts/start-journaling/"
class="btn btn-outline-primary"
aria-label="Older"
>
<p>Everything you need to know to start journaling - Journaling Guide: part 3</p>
</a>
<a
href="/posts/journaling-donts/"
class="btn btn-outline-primary"
aria-label="Newer"
>
<p>Journaling don'ts - Journaling Guide: part 4</p>
</a>
</nav>
<!-- The comments switcher -->
<!-- The Footer -->
<footer
aria-label="Site Info"
class="
d-flex flex-column justify-content-center text-muted
flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3
"
>
<p>©
<time>2025</time>
<a href="https://courgett.es/@cookie">cookie</a>.
<span
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Except where otherwise noted, the blog posts on this site are licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) License by the author."
>Some rights reserved.</span>
</p>
<p>Using the <a
data-bs-toggle="tooltip"
data-bs-placement="top"
title="v7.1.0"
href="https://github.com/cotes2020/jekyll-theme-chirpy"
target="_blank"
rel="noopener"
>Chirpy</a> theme for <a href="https://jekyllrb.com" target="_blank" rel="noopener">Jekyll</a>.
</p>
</footer>
</div>
</div>
<!-- The Search results -->
<div id="search-result-wrapper" class="d-flex justify-content-center d-none">
<div class="col-11 content">
<div id="search-hints">
<!-- The trending tags list -->
<section>
<h2 class="panel-heading">Trending Tags</h2>
<div class="d-flex flex-wrap mt-3 mb-1 me-3">
<a class="post-tag btn btn-outline-primary" href="/tags/emotions/">emotions</a>
<a class="post-tag btn btn-outline-primary" href="/tags/relations/">relations</a>
<a class="post-tag btn btn-outline-primary" href="/tags/genre/">genre</a>
<a class="post-tag btn btn-outline-primary" href="/tags/coming-out/">coming-out</a>
<a class="post-tag btn btn-outline-primary" href="/tags/journaling/">journaling</a>
<a class="post-tag btn btn-outline-primary" href="/tags/tech/">tech</a>
<a class="post-tag btn btn-outline-primary" href="/tags/lecture/">lecture</a>
<a class="post-tag btn btn-outline-primary" href="/tags/self-acceptance/">self-acceptance</a>
<a class="post-tag btn btn-outline-primary" href="/tags/writing/">writing</a>
<a class="post-tag btn btn-outline-primary" href="/tags/%C3%A9criture/">écriture</a>
</div>
</section>
</div>
<div id="search-results" class="d-flex flex-wrap justify-content-center text-muted mt-3"></div>
</div>
</div>
</div>
<aside aria-label="Scroll to Top">
<button id="back-to-top" type="button" class="btn btn-lg btn-box-shadow">
<i class="fas fa-angle-up"></i>
</button>
</aside>
</div>
<div id="mask"></div>
<aside
id="notification"
class="toast"
role="alert"
aria-live="assertive"
aria-atomic="true"
data-bs-animation="true"
data-bs-autohide="false"
>
<div class="toast-header">
<button
type="button"
class="btn-close ms-auto"
data-bs-dismiss="toast"
aria-label="Close"
></button>
</div>
<div class="toast-body text-center pt-0">
<p class="px-2 mb-3">A new version of content is available.</p>
<button type="button" class="btn btn-primary" aria-label="Update">
Update
</button>
</div>
</aside>
<!-- JavaScripts -->
<!-- JS selector for site. -->
<!-- commons -->
<!-- layout specified -->
<!-- image lazy-loading & popup & clipboard -->
<script src="https://cdn.jsdelivr.net/combine/npm/simple-jekyll-search@1.10.0/dest/simple-jekyll-search.min.js,npm/loading-attribute-polyfill@2.1.1/dist/loading-attribute-polyfill.umd.min.js,npm/glightbox@3.3.0/dist/js/glightbox.min.js,npm/clipboard@2.0.11/dist/clipboard.min.js,npm/dayjs@1.11.13/dayjs.min.js,npm/dayjs@1.11.13/locale/en.js,npm/dayjs@1.11.13/plugin/relativeTime.js,npm/dayjs@1.11.13/plugin/localizedFormat.js,npm/tocbot@4.29.0/dist/tocbot.min.js"></script>
<script src="/assets/js/dist/post.min.js"></script>
<!-- Pageviews -->
<!--
Jekyll Simple Search loader
See: <https://github.com/christian-fei/Simple-Jekyll-Search>
-->
<script>SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('search-results'),
json: '/assets/js/data/search.json',
searchResultTemplate: ' <article class="px-1 px-sm-2 px-lg-4 px-xl-0"> <header> <h2><a href="{url}">{title}</a></h2> <div class="post-meta d-flex flex-column flex-sm-row text-muted mt-1 mb-1"> {categories} {tags} </div> </header> <p>{snippet}</p> </article>',
noResultsText: '<p class="mt-5">Oops! No results found.</p>',
templateMiddleware: function(prop, value, template) {
if (prop === 'categories') {
if (value === '') {
return `${value}`;
} else {
return `<div class="me-sm-4"><i class="far fa-folder fa-fw"></i>${value}</div>`;
}
}
if (prop === 'tags') {
if (value === '') {
return `${value}`;
} else {
return `<div><i class="fa fa-tag fa-fw"></i>${value}</div>`;
}
}
}
});
</script>
</body>
</html>