Files
district-dharma-site/index.html
T

412 lines
13 KiB
HTML
Raw Normal View History

2026-07-20 16:23:31 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome to District Dharma | District Dharma Collective</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="canonical" href="/">
<meta name="description" content="">
<meta name="robots" content="index,follow">
<meta property="og:title" content="Welcome to District Dharma | District Dharma Collective">
<meta property="og:type" content="article">
<meta property="og:url" content="/">
<meta property="og:description" content="">
<meta name="generator" content="Eleventy v3.1.5">
<!-- CSS -->
<style>form label {
display: block;
2026-08-21 23:11:09 +00:00
margin-block: .5rem;
2026-07-20 16:23:31 -07:00
font-weight: bold;
}
form input,
form textarea,
form button {
display: block;
border-radius: .25rem;
border-color: var(--color-accent);
}
form input,
form textarea {
width: 100%;
}
input:user-invalid,
textarea:user-invalid {
border-color: var(--color-red);
outline: .2rem solid var(--color-red);
outline-offset: .2rem;
}
input:user-invalid:focus-visible,
textarea:user-invalid:focus-visible {
outline: .1rem solid var(--color-accent);
outline-offset: .1rem;
}
.error {
2026-08-21 23:11:09 +00:00
margin-block: .5rem;
2026-07-20 16:23:31 -07:00
visibility: hidden;
2026-08-21 23:11:09 +00:00
font-size: .9rem;
2026-07-20 16:23:31 -07:00
}
input:user-invalid + .error,
textarea:user-invalid + .error {
visibility: visible;
}
form button {
padding: 0 .5rem;
margin: 1rem auto;
}
@media (any-hover: hover) {
form button:hover {
background-color: var(--color-accent);
color: var(--color-bg);
}
}
.name-email {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
@media (max-width: 650px) {
.name-email {
grid-template-columns: 1fr;
gap: 0;
}
}
.red {
color: var(--color-red);
}
:root {
color-scheme: light dark;
--color-dark: #202325;
--color-light: #e4edf3;
--color-blue-dark: #0c436d;
--color-blue-light: #5ca6ce;
--color-red-light: #bb362a;
--color-red-dark: #b82e1f;
--color-text: light-dark(var(--color-dark), var(--color-light));
--color-bg: light-dark(var(--color-light), var(--color-dark));
--color-accent: light-dark(var(--color-blue-dark), var(--color-blue-light));
--color-accent-flipped: light-dark(var(--color-blue-light), var(--color-blue-dark));
--color-red: light-dark(var(--color-red-dark), var(--color-red-light));
}
/* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */
*, *::before, *::after {
box-sizing: border-box; /* 1. Use a more-intuitive box-sizing model */
}
#root, #__next {
isolation: isolate; /* 10. Create a root stacking context */
}
*:not(dialog) {
margin: 0; /* 2. Remove default margins */
}
*:focus-visible {
outline-offset: .12rem;
outline: .12rem solid var(--color-accent);
2026-08-24 18:42:42 +00:00
border-radius: .25em;
2026-07-20 16:23:31 -07:00
}
html {
height: 100%;
}
@media (prefers-reduced-motion: no-preference) {
html {
interpolate-size: allow-keywords; /* 3. Enable keyword animations */
}
}
body {
line-height: 1.5; /* 4. Increase line-height */
-webkit-font-smoothing: antialiased; /* 5. Improve text rendering */
font-family: sans-serif;
color: var(--color-text);
background-color: var(--color-bg);
font-family: "Atkinson Hyperlegible Next";
height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
min-height: 100%;
}
#content {
width: 65%;
max-width: 1800px;
margin-inline: auto;
margin-block-end: 3rem;
}
@media (max-width: 1050px) {
#content {
width: 85%;
}
}
@media (max-width: 650px) {
#content {
width: 92%;
}
}
img, picture, video, canvas, svg {
display: block; /* 6. Improve media defaults */
max-width: 100%; /* 6. Improve media defaults */
height: auto; /* 6. Improve media defaults */
margin: 0 auto;
}
input, button, textarea, select {
font: inherit; /* 7. Inherit fonts for form controls */
}
h1, h2, h3, h4, h5, h6, p {
overflow-wrap: break-word; /* 8. Avoid text overflows */
}
h1, h2, h3, h4, h5, h6 {
text-wrap: balance; /* 9. Improve line wrapping */
2026-08-24 18:42:42 +00:00
font-family: Montserrat, sans-serif;
2026-07-20 16:23:31 -07:00
margin-block-start: 1em;
color: var(--color-accent);
font-variant: small-caps;
font-weight: 400;
2026-08-05 18:01:54 +00:00
letter-spacing: 5%;
2026-07-20 16:23:31 -07:00
}
h1 {
text-align: center;
font-size: 3rem;
margin-block-end: .6em;
}
2026-08-21 23:25:51 +00:00
h2 { font-size: 2.1rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.4rem; }
@media (max-width: 650px) {
h1 { font-size: 2.6rem; }
}
2026-07-20 16:23:31 -07:00
p {
text-wrap: pretty; /* 9. Improve line wrapping */
margin-block: 1.25em;
}
a {
color: var(--color-accent);
text-decoration-thickness: .15rem;
transition: text-decoration-thickness .5s;
}
a:visited {
color: var(--color-text);
text-decoration-color: var(--color-accent);
}
@media (any-hover: hover) {
a:hover {
text-decoration-thickness: .25rem;
}
}
2026-08-21 23:18:22 +00:00
ul {
margin-block: 1.25rem;
}
ul p {
margin-block: 0;
}
2026-07-20 16:23:31 -07:00
/* Header/nav/footer */
header {
2026-08-21 23:25:51 +00:00
--height-base: 20vh; /* Variable height for desktop vs mobile */
}
@media (max-width: 650px) {
header{
--height-base: 12vh; /* Variable height for desktop vs mobile */
}
}
header {
height: var(--height-base);
padding: calc(var(--height-base) / 8);
2026-07-20 16:23:31 -07:00
background-color: var(--color-accent);
}
.logo {
height: 100%;
width: auto;
2026-08-21 23:25:51 +00:00
padding: calc(var(--height-base) / 30);
border: calc(var(--height-base) / 50) solid var(--color-accent);
border-radius: calc(var(--height-base) / 3);
2026-07-20 16:23:31 -07:00
}
header a:focus-visible {
outline: none; /* covered by logo rule below */
}
header a:focus-visible .logo {
border-color: var(--color-text);
2026-08-21 23:25:51 +00:00
outline: calc(var(--height-base) / 30) solid var(--color-accent-flipped);
2026-07-20 16:23:31 -07:00
}
@media (prefers-color-scheme: light) {
.dark {
display: none;
}
}
@media (prefers-color-scheme: dark) {
.light {
display: none;
}
}
footer {
background-color: var(--color-accent);
color: var(--color-bg);
2026-08-05 18:01:54 +00:00
padding: 1rem;
2026-07-20 16:23:31 -07:00
}
footer p {
text-align: center;
2026-08-05 18:01:54 +00:00
margin: 0;
2026-07-20 16:23:31 -07:00
}
footer a,
footer a:visited {
color: var(--color-bg);
text-decoration-color: var(--color-bg);
}
footer a:focus-visible {
outline: .15rem solid var(--color-accent-flipped);
2026-08-24 18:42:42 +00:00
}
2026-08-25 20:31:56 +00:00
footer a:has(svg) {
display: inline-block;
}
2026-08-24 18:42:42 +00:00
footer svg {
height: 2rem;
width: auto;
2026-07-20 16:23:31 -07:00
}</style>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="/" title="go home" aria-label="go home">
<img class="logo light" src="/img/JB0BEdyd8T-917.png" alt="the district dharma logo, which depicts a stylized lotus flower under 3 dots, surrounded by an upper and lower curve, in two shades of blue" loading="lazy" decoding="async" width="917" height="974">
<img class="logo dark" src="/img/vXgSBf7Ahb-917.png" alt="the district dharma logo, which depicts a stylized lotus flower under 3 dots, surrounded by an upper and lower curve, in two shades of blue" loading="lazy" decoding="async" width="917" height="974">
</a>
</header>
<main id="main">
2026-08-05 17:13:58 +00:00
<div id="content">
2026-07-20 16:23:31 -07:00
<h1>Welcome to District Dharma</h1>
<h2>Who we are</h2>
<p>District Dharma Collective is a community of practitioners rooted in Washington, DC — a city that sits at the center of so much that is uncertain, contested, and in flux. We currently gather in the Dupont Circle neighborhood, and our doors are open to anyone who finds their way to us.</p>
<p>We come from different Buddhist traditions and paths, but we gather around a shared conviction: that the dharma has something vital to say to us in these times of upheaval and unrest. We sit together, study the teachings, and ask hard questions about how ancient wisdom meets this present moment — personally, collectively, and in the world around us.</p>
<p>In our study, we are intentional about whose voices we center. Alongside traditional texts, we lift up the teachings of BIPOC and Queer dharma teachers, honoring the full breadth of wisdom that is alive in contemporary Buddhist communities.</p>
<p>We believe that practice and community are inseparable. Whether you are new to meditation, returning after years away, or a long-committed practitioner seeking a spiritual home, you are welcome here. We hold no single tradition and no single teacher — only a shared willingness to show up: on the cushion, in study, and for one another.</p>
<h2>What we do</h2>
2026-08-20 18:26:08 +00:00
<p>We gather in a space that spends its weekdays as a psychotherapy office — and theres something intentional about that. Each time we meet, we transform it together, arranging cushions and chairs before settling into thirty minutes of sitting meditation. Newcomers are always welcome to ask for guidance; no experience is assumed.</p>
<p>After a short break, we move into a dharma talk and discussion rooted in whatever text were exploring as a group. We tend toward contemporary teachers whose voices are too rarely centered — writers like Lama Rod Owens and Kaira Jewel Lingo — alongside more traditional teachings. The conversation that follows is as much a part of the practice as the sitting.</p>
2026-07-20 16:23:31 -07:00
<h2>When we meet</h2>
2026-08-21 23:25:51 +00:00
<p>We gather on the first and third Sunday of each month, from 10:30 am to noon, at <a href="https://maps.app.goo.gl/FHmY7spH5rAMUu7Q6">1633 Q Street NW, Washington, DC</a> — in the heart of Dupont Circle.</p>
2026-08-20 18:33:17 +00:00
<h3>Upcoming meetings</h3>
<ul>
2026-08-21 23:11:54 +00:00
<li>
<p>6 September 2026</p>
</li>
<li>
<p>20 September 2026</p>
</li>
2026-08-20 18:33:17 +00:00
</ul>
2026-07-20 16:23:31 -07:00
<h2>Come sit with us</h2>
2026-08-20 18:26:08 +00:00
<p>Our space is intimate, and we set it up ourselves before each gathering — so it helps us to know youre coming. If youd like to join us, reach out using the form below and well be in touch with everything you need to know!</p>
2026-07-20 16:23:31 -07:00
<form action="https://formgrid.dev/api/f/842wiwnz" method="POST" class="contact-form">
<h2 class="center">Get in touch</h2>
<p class="center">All fields
<span aria-hidden="true">marked with an asterisk (<span class="red">*</span>)</span>
are required.</p>
<div class="name-email">
<div class="form-field">
<label for="name">Name <span class="red" aria-hidden="true">*</span></label>
<input id="name" type="text" name="name" placeholder="Your Name" required="" aria-required="true" aria-describedby="name-error">
<p id="name-error" class="error">Name cannot be empty.</p>
</div>
<div class="form-field">
<label for="email">Email <span class="red" aria-hidden="true">*</span></label>
<input id="email" type="email" name="email" placeholder="you@example.com" required="" aria-required="true" aria-describedby="email-error">
<p id="email-error" class="error">Email cannot be empty and must be a valid email.</p>
</div>
</div>
<div class="form-field">
<label for="message">Message <span class="red" aria-hidden="true">*</span></label>
<textarea id="message" name="message" rows="4" placeholder="What's your message?" required="" aria-required="true" aria-describedby="message-error"></textarea>
<p id="message-error" class="error">Message cannot be empty.</p>
</div>
<button type="submit" class="form-button">Send message</button>
</form>
</div>
</main>
<footer>
2026-08-24 18:42:42 +00:00
<p>
<a title="Find us on Mastodon" href="https://dmv.community/@DistrictDharmaCollective">
<svg class="dark" xmlns="http://www.w3.org/2000/svg" aria-label="District Dharma on Mastodon" role="img" viewBox="0 0 512.00 512.00" fill="#5ca6ce" stroke="#5ca6ce"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><rect width="512" height="512" rx="15%"></rect><path d="m409 290c-5 24-43 50-85 56-86 11-137-6-137-6 3 13-4 54 70 52 31 0 58-7 58-7l2 27c-51 24-107 15-140 6-67-17-79-90-81-162v-59c0-74 49-96 49-96 50-24 180-22 222 0 0 0 49 22 49 96 0 0 1 55-7 93" fill="#202325"></path><path d="m358 202v91h-35v-88c0-18-8-27-23-27-18 0-27 11-27 33v47h-34v-47c0-22-9-33-27-33-15 0-23 9-23 27v88h-35v-91c0-18 5-60 52-60 39 0 50 37 50 37s10-37 50-37c45 0 52 42 52 60"></path></g></svg>
<svg class="light" xmlns="http://www.w3.org/2000/svg" aria-label="District Dharma on Mastodon" role="img" viewBox="0 0 512.00 512.00" fill="#0c436d" stroke="#0c436d"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><rect width="512" height="512" rx="15%"></rect><path d="m409 290c-5 24-43 50-85 56-86 11-137-6-137-6 3 13-4 54 70 52 31 0 58-7 58-7l2 27c-51 24-107 15-140 6-67-17-79-90-81-162v-59c0-74 49-96 49-96 50-24 180-22 222 0 0 0 49 22 49 96 0 0 1 55-7 93" fill="#e4edf3"></path><path d="m358 202v91h-35v-88c0-18-8-27-23-27-18 0-27 11-27 33v47h-34v-47c0-22-9-33-27-33-15 0-23 9-23 27v88h-35v-91c0-18 5-60 52-60 39 0 50 37 50 37s10-37 50-37c45 0 52 42 52 60"></path></g></svg>
</a>
</p>
2026-08-05 18:01:54 +00:00
<p>© 2026</p>
2026-07-20 16:23:31 -07:00
<p><a href="/attribution/">site attribution</a></p>
</footer>
2026-08-25 20:31:56 +00:00
<!-- This page `/` was built on 2026-08-25T20:31:51.138Z -->
2026-07-20 16:23:31 -07:00
</body>
</html>