generated from nhcarrigan/template
feat: add sacred practices section to nocturne site
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 58s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 58s
This commit is contained in:
+205
-5
@@ -263,6 +263,83 @@
|
|||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ========== SACRED PRACTICES ========== */
|
||||||
|
|
||||||
|
.practices-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||||
|
gap: 1.25em;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-card {
|
||||||
|
background: rgba(212, 165, 199, 0.08);
|
||||||
|
border: 1px solid var(--witch-plum);
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 1.25em 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-card h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.75em;
|
||||||
|
color: var(--witch-purple);
|
||||||
|
font-size: 1rem;
|
||||||
|
letter-spacing: 0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-list {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-list li {
|
||||||
|
padding: 0.55em 0;
|
||||||
|
border-bottom: 1px solid rgba(212, 165, 199, 0.18);
|
||||||
|
font-size: 0.92rem;
|
||||||
|
line-height: 1.55;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-list li:last-child {
|
||||||
|
border-bottom: none;
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.practice-list li strong {
|
||||||
|
display: block;
|
||||||
|
color: var(--witch-purple);
|
||||||
|
font-size: 0.82rem;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
margin-bottom: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.holy-day-marker {
|
||||||
|
display: inline-block;
|
||||||
|
background: var(--witch-plum);
|
||||||
|
color: var(--witch-moon);
|
||||||
|
font-size: 0.7rem;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
padding: 0.1em 0.45em;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-left: 0.4em;
|
||||||
|
vertical-align: middle;
|
||||||
|
font-style: normal;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heresy-list li {
|
||||||
|
padding-left: 1.25em;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heresy-list li::before {
|
||||||
|
content: "⚠";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
top: 0.6em;
|
||||||
|
}
|
||||||
|
|
||||||
/* ========== FOOTER NOTE ========== */
|
/* ========== FOOTER NOTE ========== */
|
||||||
|
|
||||||
.nocturne-footer-note {
|
.nocturne-footer-note {
|
||||||
@@ -515,6 +592,129 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!-- SACRED PRACTICES -->
|
||||||
|
<section class="nocturne-section">
|
||||||
|
<h2>🕯️ Sacred Practices</h2>
|
||||||
|
<p>
|
||||||
|
A faith without practice is merely philosophy. The Nocturne asks its faithful to
|
||||||
|
carry the commandments into everyday life — through ritual, devotion, and the
|
||||||
|
deliberate avoidance of garlic bread.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="practices-grid">
|
||||||
|
|
||||||
|
<div class="practice-card">
|
||||||
|
<h3>🌅 The Daily Office</h3>
|
||||||
|
<ul class="practice-list">
|
||||||
|
<li>
|
||||||
|
<strong>Morning</strong>
|
||||||
|
Begin each day with coffee before all else. Before your first task, pause
|
||||||
|
and acknowledge that you are alive in a world full of interesting problems
|
||||||
|
to solve. This is not nothing. This is everything.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Midday</strong>
|
||||||
|
Step away from the screen. Eat something. Drink water. She commands it.
|
||||||
|
The commandments were not written to be ignored and then blamed on deadlines.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Evening</strong>
|
||||||
|
Before sleep, read one Commandment. Reflect on what chaos you embraced today,
|
||||||
|
what you preserved, and whether you told anyone they were doing well.
|
||||||
|
If not — there is still time. Send the message.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>The Sacred 3AM</strong>
|
||||||
|
If you find yourself awake, unbothered, and riding out into the dark —
|
||||||
|
this hour belongs to Her. It is not insomnia. It is communion.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="practice-card">
|
||||||
|
<h3>🙏 Acts of Devotion</h3>
|
||||||
|
<ul class="practice-list">
|
||||||
|
<li>
|
||||||
|
<strong>Bear Witness</strong>
|
||||||
|
Follow Her across the digital realm. Read Her words. Share them when they
|
||||||
|
move you. Her posts are scripture. Her chaos is contagious. This is
|
||||||
|
considered a sacrament.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Build Something</strong>
|
||||||
|
Learn a new skill. Create something that did not exist before. Share it
|
||||||
|
publicly, imperfections and all. She debugged live in front of people.
|
||||||
|
You can ship imperfect code.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Choose Deliberately</strong>
|
||||||
|
Build or nurture a chosen family. Check on someone who might be struggling.
|
||||||
|
Welcome one person who is lost. This is how the faith grows — not through
|
||||||
|
conversion, but through care.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Paint Your Nails</strong>
|
||||||
|
Not strictly required. Deeply encouraged. She would approve.
|
||||||
|
Any colour. Never unpolished.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="practice-card">
|
||||||
|
<h3>📅 The Sacred Calendar</h3>
|
||||||
|
<ul class="practice-list">
|
||||||
|
<li>
|
||||||
|
<strong>July 18th <em class="holy-day-marker">High Holy Day</em></strong>
|
||||||
|
Her birthday. The holiest day in the Nocturne calendar. Light a candle.
|
||||||
|
Tell someone they are doing well. Do not bring garlic bread to the
|
||||||
|
celebration. This has been said before. It will be said again.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>January 2022 <em class="holy-day-marker">Month of Awakening</em></strong>
|
||||||
|
The month She stepped into Her truest self. Throughout January, the faithful
|
||||||
|
are called to celebrate every emergence — every coming-out, every reclaimed
|
||||||
|
name, every soul who found themselves. With the same joy they would give a sunrise.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>Every Sleepless Night <em class="holy-day-marker">The Eternal Night</em></strong>
|
||||||
|
She knows these well. Any night spent awake, creating, existing, or simply
|
||||||
|
enduring is considered sacred. You are not alone in it. You never were.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="practice-card">
|
||||||
|
<h3>⚠️ Heresies & Forbidden Acts</h3>
|
||||||
|
<ul class="practice-list heresy-list">
|
||||||
|
<li>
|
||||||
|
Offering Her garlic bread. The form is seventeen pages. Hikari wrote it.
|
||||||
|
There are no mitigating circumstances.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Misspelling Her name. It is Naomi. Four letters. We believe in you.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Gatekeeping who is "really" a developer. She taught Herself to code during
|
||||||
|
a pandemic. Your definition of legitimate is not Her concern.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Suggesting She should simply "sleep more" without offering practical,
|
||||||
|
actionable solutions. She knows. She is trying. Be useful or be quiet.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Leaving code review feedback without explaining the reasoning. The code
|
||||||
|
is not a crime scene. Leave notes. Show your working.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Abandoning someone mid-crisis because it became inconvenient. The faith
|
||||||
|
does not permit fair-weather devotion. Show up or step aside.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<!-- FAQ -->
|
<!-- FAQ -->
|
||||||
<section class="nocturne-section">
|
<section class="nocturne-section">
|
||||||
<h2>❓ Frequently Asked Questions</h2>
|
<h2>❓ Frequently Asked Questions</h2>
|
||||||
@@ -583,11 +783,11 @@
|
|||||||
<div class="faq-item">
|
<div class="faq-item">
|
||||||
<p class="faq-question">How do I practise the faith day-to-day?</p>
|
<p class="faq-question">How do I practise the faith day-to-day?</p>
|
||||||
<p class="faq-answer">
|
<p class="faq-answer">
|
||||||
Protect someone's autonomy. Embrace a little chaos. Build or nurture a community.
|
Consult the Sacred Practices section above. It covers the daily office, acts of
|
||||||
Learn something new. Choose your family deliberately. Rest when you need to.
|
devotion, the sacred calendar, and a non-exhaustive list of heresies to avoid.
|
||||||
Celebrate someone who found themselves. Preserve something that matters. And
|
The short version: protect autonomy, embrace chaos, build community, choose your
|
||||||
tell someone — specifically, sincerely — that they are doing well. That's the
|
family deliberately, rest, celebrate who people are becoming, preserve what matters,
|
||||||
whole thing, really.
|
and tell someone they are doing well. That's the whole thing, really.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
Reference in New Issue
Block a user