Compare commits

...

10 Commits

Author SHA1 Message Date
Nathan Schneider
0bc9d26ad0 UX adjustments to the contact buttons on main page 2025-08-03 23:12:35 -06:00
Nathan Schneider
d7d68f874a Small UX tweaks 2025-07-31 16:35:53 -06:00
1d964277b2 Added E2CC support link to footer 2025-07-28 20:37:55 +00:00
Nathan Schneider
49e8196fe8 Various UX improvements to index and dropdowns 2025-07-21 21:25:24 -06:00
afee96c7a2 Added Matomo tracking code 2025-07-21 00:05:06 +00:00
4ce406d3de Moved domain to e2c.how 2025-07-20 23:43:46 +00:00
Nathan Schneider
0bf0e02f40 Aesthetic adjustments throughout 2025-07-20 00:06:09 -06:00
Nathan Schneider
57cd3fe19b Moved JS from baseof 2025-07-19 21:49:44 -06:00
Nathan Schneider
e7d02211a3 Moved CSS from baseof 2025-07-19 21:46:51 -06:00
Nathan Schneider
0060c18793 Improvements to responsiveness on menu and index page 2025-07-19 21:41:38 -06:00
13 changed files with 1715 additions and 1076 deletions

View File

@@ -8,7 +8,7 @@ variables:
# Tells GitLab Runner to initialize and update submodules recursively
GIT_SUBMODULE_STRATEGY: recursive
# TODO: the Surfer server base url (ex: "https://www.example.com/")
SURFER_SERVER: "https://e2c.medlab.host/"
SURFER_SERVER: "https://e2c.how/"
stages:
- build # Added build stage

View File

@@ -23,7 +23,7 @@ To contribute to this project, use the contact form at E2C.how to request edit a
- **Custom CSS styling** with E2C yellow branding (#F4D03F)
### Content Types
- **Case Studies** (`/content/case-studies/`) - 24 case studies with logos and descriptions
- **Case Studies** (`/content/case-studies/`) - Case studies with logos and descriptions
- **Legal Snippets** (`/content/legal-snippets/`) - Legal documents and frameworks
- **Resources** (`/content/resources/`) - Media, education, and primer content
- **Main Pages** - Homepage, contact, add-your-story with integrated forms

View File

@@ -7,10 +7,10 @@ hero_alt: "Exit to Community concept illustration"
<div class="hero-section">
<div class="hero-content">
<img src="/img/Frame_1_(6).png" alt="Exit to Community concept illustration" class="hero-image" />
<div class="hero-text">
<h1>Stories and strategies for community ownership</h1>
</div>
<img src="/img/Frame_1_(6).png" alt="Exit to Community concept illustration" class="hero-image" />
</div>
</div>
@@ -40,26 +40,6 @@ Exit to Community is a search for another way—a path where organizations can m
</div>
</div>
<div class="main-sections">
<h2>Explore E2C</h2>
<div class="primary-cards">
<div class="primary-card">
<h3>Case Studies</h3>
<p>Real examples of companies that have attempted or achieved community ownership transitions</p>
<a href="/case-studies/" class="btn">Explore Cases</a>
</div>
<div class="primary-card">
<h3>Legal Snippets</h3>
<p>Legal documents and frameworks for implementing community ownership structures</p>
<a href="/legal-snippets/" class="btn">View Legal Resources</a>
</div>
<div class="primary-card">
<h3>Resources</h3>
<p>Educational materials, primers, and guides for Exit to Community transitions</p>
<a href="/resources/" class="btn">Access Resources</a>
</div>
</div>
</div>
<div style="text-align: center; margin: 3rem 0;">
@@ -69,16 +49,16 @@ Exit to Community is a search for another way—a path where organizations can m
<div class="secondary-actions">
<h3>Get Involved</h3>
<div class="secondary-cards">
<div class="secondary-card">
<h4>Plan Your E2C</h4>
<p>Connect with our team to discuss your organization's future</p>
<a href="/contact/" class="secondary-button">Get in Touch</a>
</div>
<div class="secondary-card">
<h4>Share Your Story</h4>
<p>Help others learn by contributing your organization's E2C experience</p>
<a href="/add-your-story/" class="secondary-button">Add Your Story</a>
</div>
<div class="secondary-card">
<h4>Get in Touch</h4>
<p>Connect with the Exit to Community project team</p>
<a href="/contact/" class="secondary-button">Contact Us</a>
</div>
</div>
</div>

View File

@@ -11,7 +11,7 @@ Help us share it with people who can benefit from its lessons.
<!-- Action Network Form Embed -->
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' />
<script src='https://actionnetwork.org/widgets/v3/form/e2c-website-story-form?format=js&source=widget&clear_id=true'></script>
<div id='can-form-area-e2c-website-story-form' style='width: 100%; margin-bottom: 24px;'></div>
<div id='can-form-area-e2c-website-story-form' style='width: 100%'></div>
<!-- Fallback form for cases where JS is disabled -->
<noscript>

View File

@@ -17,7 +17,7 @@ Want to plan your community exit strategy? Got experience or legal snippets you'
<!-- Action Network Form Embed -->
<link href='https://actionnetwork.org/css/style-embed-v3.css' rel='stylesheet' type='text/css' />
<script src='https://actionnetwork.org/widgets/v3/form/e2c-website-join-form?format=js&source=widget&clear_id=true'></script>
<div id='can-form-area-e2c-website-join-form' style='width: 100%; margin-bottom: 24px;'></div>
<div id='can-form-area-e2c-website-join-form' style='width: 100%'></div>
<!-- Fallback form for cases where JS is disabled -->
<noscript>

View File

@@ -8,777 +8,38 @@
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<style>
@import url('/fonts/space-grotesk-local.css');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--e2c-yellow: #F4D03F;
--e2c-dark-yellow: #E8C547;
--text-primary: #2C3E50;
--text-secondary: #7F8C8D;
--background: #FEFEFE;
--card-background: #FFFFFF;
--border: #E5E8E8;
--shadow: rgba(0, 0, 0, 0.08);
}
body {
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--text-primary);
background: var(--background);
font-weight: 400;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.site-header {
background-image: url('/img/notion_bg-1.png');
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
border-bottom: 1px solid var(--border);
padding: 16px 0;
position: sticky;
top: 0;
z-index: 100;
min-height: 80px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
color: var(--text-primary);
font-weight: 600;
font-size: 1.2rem;
background: rgba(255, 255, 255, 0.9);
padding: 8px 16px;
border-radius: 24px;
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.logo img {
height: 48px;
margin-right: 10px;
}
.nav-links {
display: flex;
list-style: none;
gap: 16px;
margin: 0;
}
.nav-links a {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
font-size: 14px;
padding: 8px 16px;
border-radius: 20px;
transition: all 0.2s ease;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.nav-links a:hover {
background: var(--e2c-yellow);
border-color: var(--e2c-yellow);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
main {
padding: 48px 0;
min-height: calc(100vh - 200px);
}
footer {
background: var(--card-background);
border-top: 1px solid var(--border);
padding: 48px 0 32px 0;
color: var(--text-secondary);
font-size: 14px;
}
.footer-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start;
}
.footer-section h3 {
color: var(--text-primary);
font-size: 1.25rem;
margin-bottom: 16px;
font-weight: 600;
}
.footer-section p {
margin-bottom: 16px;
line-height: 1.6;
}
.newsletter-signup {
margin-top: 24px;
}
.custom-newsletter-form .form-group {
display: flex;
gap: 8px;
margin-bottom: 12px;
}
.email-input {
flex: 1;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 400;
font-size: 14px;
padding: 10px 16px;
border: 1px solid var(--border);
border-radius: 24px;
background: rgba(255, 255, 255, 0.9);
color: var(--text-primary);
transition: all 0.2s ease;
}
.email-input:focus {
outline: none;
border-color: var(--e2c-yellow);
box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.2);
}
.email-input::placeholder {
color: var(--text-secondary);
}
.subscribe-btn {
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 500;
font-size: 14px;
padding: 10px 20px;
background: var(--e2c-yellow);
color: var(--text-primary);
border: 2px solid var(--e2c-yellow);
border-radius: 24px;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
}
.subscribe-btn:hover {
background: var(--e2c-dark-yellow);
border-color: var(--e2c-dark-yellow);
transform: translateY(-1px);
}
.form-note {
font-size: 12px;
color: var(--text-secondary);
margin: 0;
font-style: italic;
}
.footer-links {
text-align: right;
}
.footer-links p {
margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 16px;
color: var(--text-primary);
font-weight: 600;
line-height: 1.3;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
p {
margin-bottom: 16px;
color: var(--text-secondary);
line-height: 1.7;
}
a {
color: var(--text-primary);
text-decoration: underline;
text-decoration-color: var(--e2c-yellow);
text-underline-offset: 3px;
transition: all 0.2s ease;
}
a:hover {
color: var(--text-primary);
text-decoration-color: var(--e2c-dark-yellow);
}
.btn {
display: inline-block;
padding: 12px 24px;
background: var(--e2c-yellow);
color: var(--text-primary);
text-decoration: none;
border-radius: 24px;
margin: 8px 0;
font-weight: 500;
font-size: 15px;
transition: all 0.2s ease;
border: 2px solid var(--e2c-yellow);
}
.btn:hover {
background: var(--e2c-dark-yellow);
border-color: var(--e2c-dark-yellow);
color: var(--text-primary);
transform: translateY(-1px);
}
.card {
background: var(--card-background);
border: 1px solid var(--border);
border-radius: 16px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 4px 12px var(--shadow);
transition: all 0.2s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px var(--shadow);
}
.grid {
display: grid;
gap: 24px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.hero {
text-align: center;
padding: 64px 0;
background: linear-gradient(135deg, var(--background) 0%, #F8F9FA 100%);
border-radius: 24px;
margin-bottom: 48px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 32px;
}
.hero-section {
background: var(--e2c-yellow);
padding: 4rem 2rem;
margin: 0 0 3rem 0;
border-radius: 24px;
}
<!-- Open Graph / Social Media Meta Tags -->
<meta property="og:title" content="{{ if and .Title (ne .Title .Site.Title) }}{{ .Title }} - {{ end }}{{ .Site.Title }}">
<meta property="og:description" content="{{ .Description | default .Site.Params.description }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ .Permalink }}">
{{ if .Params.image }}<meta property="og:image" content="{{ .Site.BaseURL }}{{ .Params.image }}">{{ end }}
{{ if .Params.banner }}<meta property="og:image" content="{{ .Site.BaseURL }}{{ .Params.banner }}">{{ end }}
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="{{ if and .Title (ne .Title .Site.Title) }}{{ .Title }} - {{ end }}{{ .Site.Title }}">
<meta name="twitter:description" content="{{ .Description | default .Site.Params.description }}">
{{ if .Params.image }}<meta name="twitter:image" content="{{ .Site.BaseURL }}{{ .Params.image }}">{{ end }}
{{ if .Params.banner }}<meta name="twitter:image" content="{{ .Site.BaseURL }}{{ .Params.banner }}">{{ end }}
<link rel="stylesheet" href="/css/main.css">
.hero-content {
display: flex;
align-items: center;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://analytics.medlab.host/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '6']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
.hero-image {
width: 300px;
height: auto;
border-radius: 16px;
}
.hero-text h1 {
font-size: 3rem;
margin: 0 0 1rem 0;
color: var(--text-primary);
}
.hero-text p {
font-size: 1.25rem;
margin: 0;
color: var(--text-primary);
}
.intro-section {
margin: 3rem 0;
text-align: center;
}
.intro-section h2 {
color: var(--text-primary);
margin-bottom: 1rem;
}
.intro-section ul {
list-style: none;
padding: 0;
margin: 2rem 0;
display: grid;
gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.intro-section ul li {
background: var(--e2c-yellow);
color: var(--text-primary);
padding: 16px 20px;
border-radius: 12px;
font-weight: 500;
text-align: center;
line-height: 1.4;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}
.intro-section ul li:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cards-grid {
display: grid;
gap: 24px;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
margin: 3rem 0;
}
.card .button {
display: inline-block;
padding: 12px 24px;
background: var(--e2c-yellow);
color: var(--text-primary);
text-decoration: none;
border-radius: 24px;
margin-top: 16px;
font-weight: 500;
font-size: 15px;
transition: all 0.2s ease;
border: 2px solid var(--e2c-yellow);
}
.card .button:hover {
background: var(--e2c-dark-yellow);
border-color: var(--e2c-dark-yellow);
transform: translateY(-1px);
}
.partnership-section {
text-align: center;
margin: 4rem 0;
padding: 2rem;
background: #F8F9FA;
border-radius: 16px;
}
.partnership-image {
width: 200px;
height: auto;
border-radius: 16px;
margin-bottom: 1rem;
}
.main-sections {
margin: 4rem 0;
}
.main-sections h2 {
text-align: center;
color: var(--text-primary);
margin-bottom: 2rem;
font-size: 2.5rem;
}
.primary-cards {
display: grid;
gap: 32px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin-bottom: 2rem;
}
.primary-card {
background: var(--card-background);
border: 2px solid var(--e2c-yellow);
border-radius: 20px;
padding: 32px;
text-align: center;
box-shadow: 0 8px 24px var(--shadow);
transition: all 0.3s ease;
}
.primary-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 40px var(--shadow);
border-color: var(--e2c-dark-yellow);
}
.primary-card h3 {
font-size: 1.5rem;
color: var(--text-primary);
margin-bottom: 1rem;
}
.primary-card p {
color: var(--text-secondary);
margin-bottom: 1.5rem;
}
.secondary-actions {
margin: 3rem 0;
padding: 2rem;
background: #F8F9FA;
border-radius: 16px;
}
.secondary-actions h3 {
text-align: center;
color: var(--text-primary);
margin-bottom: 1.5rem;
font-size: 1.5rem;
}
.secondary-cards {
display: grid;
gap: 24px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.secondary-card {
background: var(--card-background);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
text-align: center;
transition: all 0.2s ease;
}
.secondary-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px var(--shadow);
}
.secondary-card h4 {
font-size: 1.1rem;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
.secondary-card p {
color: var(--text-secondary);
margin-bottom: 1rem;
font-size: 0.9rem;
}
.secondary-button {
display: inline-block;
padding: 8px 16px;
background: transparent;
color: var(--text-primary);
text-decoration: none;
border: 1px solid var(--border);
border-radius: 16px;
font-weight: 500;
font-size: 14px;
transition: all 0.2s ease;
}
.secondary-button:hover {
background: var(--e2c-yellow);
border-color: var(--e2c-yellow);
transform: translateY(-1px);
}
/* Hide auto-generated cards on homepage only */
.home .grid {
display: none !important;
}
/* Case study logo styling */
.case-logo {
width: 72px;
height: 72px;
object-fit: contain;
border-radius: 8px;
margin-bottom: 16px;
background: rgba(255, 255, 255, 0.9);
padding: 8px;
border: 1px solid var(--border);
}
/* Case study detail page logo */
.case-detail-logo {
width: 120px;
height: 120px;
object-fit: contain;
border-radius: 16px;
margin-bottom: 24px;
background: rgba(255, 255, 255, 0.9);
padding: 16px;
border: 1px solid var(--border);
box-shadow: 0 4px 12px var(--shadow);
}
@media (max-width: 768px) {
.nav-links {
gap: 6px;
flex-wrap: wrap;
}
.nav-links a {
padding: 6px 10px;
font-size: 12px;
border-radius: 16px;
}
.logo {
font-size: 0.9rem;
padding: 5px 10px;
}
.logo img {
height: 32px;
margin-right: 5px;
}
.site-header {
padding: 8px 0;
min-height: 48px;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.container {
padding: 0 16px;
}
.hero-content {
flex-direction: column;
text-align: center;
}
.hero-image {
width: 200px;
}
.hero-text h1 {
font-size: 2rem;
}
.hero-section {
margin: 0 0.5rem 2rem 0.5rem;
padding: 2rem 1rem;
}
.primary-cards {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
gap: 32px;
text-align: center;
}
.footer-links {
text-align: center;
}
.custom-newsletter-form .form-group {
flex-direction: column;
gap: 12px;
}
.subscribe-btn {
align-self: center;
min-width: 120px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.primary-cards {
grid-template-columns: 1fr;
}
}
/* Contact Form Styling */
.contact-form-container {
max-width: 700px;
margin: 2rem auto;
padding: 2rem;
background: var(--card-background);
border-radius: 16px;
box-shadow: 0 4px 12px var(--shadow);
border: 1px solid var(--border);
}
.e2c-contact-form .form-group {
margin-bottom: 1.5rem;
}
.e2c-contact-form label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
color: var(--text-primary);
font-size: 14px;
}
.e2c-contact-form input[type="text"],
.e2c-contact-form input[type="email"],
.e2c-contact-form input[type="url"],
.e2c-contact-form select,
.e2c-contact-form textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid var(--border);
border-radius: 8px;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: 14px;
background: var(--background);
color: var(--text-primary);
transition: all 0.2s ease;
}
.e2c-contact-form input:focus,
.e2c-contact-form select:focus,
.e2c-contact-form textarea:focus {
outline: none;
border-color: var(--e2c-yellow);
box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.2);
}
.e2c-contact-form textarea {
resize: vertical;
min-height: 100px;
}
.checkbox-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.checkbox-label {
display: flex !important;
align-items: center;
gap: 0.5rem;
font-weight: 400 !important;
margin-bottom: 0 !important;
cursor: pointer;
}
.e2c-contact-form input[type="checkbox"],
.e2c-contact-form input[type="radio"] {
width: auto;
margin: 0;
accent-color: var(--e2c-yellow);
}
.submit-btn {
width: 100%;
padding: 14px 24px;
background: var(--e2c-yellow);
color: var(--text-primary);
border: 2px solid var(--e2c-yellow);
border-radius: 24px;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: all 0.2s ease;
}
.submit-btn:hover {
background: var(--e2c-dark-yellow);
border-color: var(--e2c-dark-yellow);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
.contact-form-container {
margin: 1rem;
padding: 1.5rem;
}
}
/* Protect h2 elements from external script interference */
h2 {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}
.intro-section h2,
.main-sections h2,
.featured-cases-section h2 {
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}
/* Hide Action Network form titles */
#can-form-area-e2c-website-newsletter-form h2,
#can-form-area-e2c-website-join-form h2,
#can-form-area-e2c-website-story-form h2,
[id*="can-form-area"] h2 {
display: none !important;
}
</style>
</head>
<body>
<header class="site-header">
@@ -787,6 +48,11 @@
<a href="/" class="logo">
<img src="/img/yellow_e2c.png" alt="Exit to Community" />
</a>
<button class="mobile-menu-toggle" aria-label="Toggle mobile menu">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</button>
<ul class="nav-links">
<li><a href="/case-studies/">Case Studies</a></li>
<li><a href="/legal-snippets/">Legal Snippets</a></li>
@@ -797,6 +63,8 @@
</div>
</header>
<div class="mobile-menu-overlay"></div>
<main>
<div class="container">
{{ block "main" . }}{{ end }}
@@ -829,13 +97,17 @@
</div>
<div class="footer-section">
<div class="footer-links">
<p>&copy; {{ now.Year }} <a href="/contact">E2C Collective</a><br />
<p>&copy; {{ now.Year }} E2C Collective<br />
<a href="https://opencollective.com/e2c-c">Learn more and support us &#128151;</a><br />
In collaboration with <a href="https://www.colorado.edu/lab/medlab/exit-to-community">MEDLab at CU Boulder</a><br />
This work is licensed under a Creative Commons Attribution 4.0 License</p>
<p><a href="/contact">Connect with us</a></p>
</div>
</div>
</div>
</div>
</footer>
<script src="/js/mobile-menu.js"></script>
</body>
</html>

View File

@@ -9,14 +9,37 @@
{{ if .Pages }}
<div class="filter-controls">
<div class="filter-row">
<input type="text" id="searchInput" placeholder="Search titles and descriptions..." class="search-input">
<select id="tagFilter" class="tag-filter">
<option value="">All tags</option>
</select>
<select id="sortBy" class="sort-select">
<option value="title">Sort by Title</option>
<option value="date">Sort by Date</option>
</select>
<input type="text" id="searchInput" placeholder="Search full text..." class="search-input">
<div class="tag-filter-container">
<div id="tagDropdown" class="tag-dropdown">
<div class="tag-dropdown-trigger">
<span class="dropdown-label">Select tags</span>
<div class="selected-tags" id="selectedTags"></div>
<svg class="dropdown-arrow" width="12" height="8" viewBox="0 0 12 8" fill="none">
<path d="M1 1.5L6 6.5L11 1.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="tag-dropdown-menu" id="tagDropdownMenu">
<div class="tag-options" id="tagOptions">
<!-- Tags will be populated here -->
</div>
</div>
</div>
</div>
<div class="sort-container">
<div id="sortDropdown" class="sort-dropdown">
<div class="sort-dropdown-trigger">
<span class="sort-label">Sort by Title</span>
<svg class="dropdown-arrow" width="12" height="8" viewBox="0 0 12 8" fill="none">
<path d="M1 1.5L6 6.5L11 1.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="sort-dropdown-menu" id="sortDropdownMenu">
<div class="sort-option" data-value="title">Sort by Title</div>
<div class="sort-option" data-value="date">Sort by Date</div>
</div>
</div>
</div>
</div>
</div>
<div class="grid" id="cardGrid">
@@ -24,6 +47,7 @@
<div class="card"
data-title="{{ .Title }}"
data-description="{{ if .Description }}{{ .Description }}{{ else if .Summary }}{{ .Summary | plainify | replaceRE "^### \\*\\*Summary\\*\\*\\s*" "" | truncate 200 }}{{ else }}{{ .Content | plainify | replaceRE "^### \\*\\*Summary\\*\\*\\s*" "" | truncate 200 }}{{ end }}"
data-content="{{ .Content | plainify | replaceRE "^### \\*\\*Summary\\*\\*\\s*" "" }}"
data-tags="{{ if .Params.tags }}{{ delimit .Params.tags "," }}{{ end }}"
data-date="{{ .Date.Format "2006-01-02" }}">
{{ if .Params.banner }}
@@ -83,9 +107,9 @@
align-items: center;
}
.search-input, .tag-filter, .sort-select {
.search-input {
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-weight: 500;
font-weight: 400;
font-size: 14px;
padding: 10px 16px;
border: 1px solid var(--border);
@@ -94,14 +118,11 @@
backdrop-filter: blur(8px);
transition: all 0.2s ease;
color: var(--text-primary);
}
.search-input {
flex: 1;
min-width: 280px;
}
.search-input:focus, .tag-filter:focus, .sort-select:focus {
.search-input:focus {
outline: none;
border-color: var(--e2c-yellow);
background: var(--e2c-yellow);
@@ -110,14 +131,230 @@
}
.search-input::placeholder {
color: var(--text-secondary);
color: var(--text-primary);
font-weight: 400;
}
.tag-filter, .sort-select {
/* Custom Multi-Select Dropdown */
.tag-filter-container {
position: relative;
min-width: 200px;
}
.tag-dropdown {
position: relative;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.tag-dropdown-trigger {
display: flex;
align-items: center;
padding: 10px 16px;
border: 1px solid var(--border);
border-radius: 24px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
cursor: pointer;
transition: all 0.2s ease;
color: var(--text-primary);
font-size: 14px;
font-weight: 400;
min-height: 20px;
}
.tag-dropdown-trigger:hover, .tag-dropdown.open .tag-dropdown-trigger {
border-color: var(--e2c-yellow);
background: var(--e2c-yellow);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dropdown-label {
flex: 1;
color: var(--text-primary);
font-weight: 400;
white-space: nowrap;
}
.tag-dropdown.has-selection .dropdown-label {
display: none;
}
.selected-tags {
display: flex;
flex-wrap: wrap;
gap: 4px;
flex: 1;
min-height: 20px;
}
.selected-tag {
background: var(--text-primary);
color: white;
padding: 2px 8px;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
display: flex;
align-items: center;
gap: 4px;
}
.selected-tag .remove {
cursor: pointer;
font-weight: bold;
font-size: 14px;
line-height: 1;
opacity: 0.8;
}
.selected-tag .remove:hover {
opacity: 1;
}
.dropdown-arrow {
margin-left: 8px;
transition: transform 0.2s ease;
flex-shrink: 0;
}
.tag-dropdown.open .dropdown-arrow {
transform: rotate(180deg);
}
.tag-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--card-background);
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: 0 8px 24px var(--shadow);
z-index: 1000;
max-height: 200px;
overflow-y: auto;
opacity: 0;
visibility: hidden;
transform: translateY(-4px);
transition: all 0.2s ease;
margin-top: 4px;
}
.tag-dropdown.open .tag-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.tag-option {
display: flex;
align-items: center;
padding: 8px 12px;
cursor: pointer;
font-size: 14px;
color: var(--text-primary);
transition: background-color 0.15s ease;
}
.tag-option:hover {
background: rgba(244, 208, 63, 0.1);
}
.tag-option input[type="checkbox"] {
margin-right: 8px;
accent-color: var(--e2c-yellow);
}
.tag-option.selected {
background: rgba(244, 208, 63, 0.15);
font-weight: 500;
}
/* Custom Sort Dropdown */
.sort-container {
position: relative;
min-width: 160px;
}
.sort-dropdown {
position: relative;
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.sort-dropdown-trigger {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 16px;
border: 1px solid var(--border);
border-radius: 24px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(8px);
cursor: pointer;
transition: all 0.2s ease;
color: var(--text-primary);
font-size: 14px;
font-weight: 400;
min-height: 20px;
}
.sort-dropdown-trigger:hover, .sort-dropdown.open .sort-dropdown-trigger {
border-color: var(--e2c-yellow);
background: var(--e2c-yellow);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.sort-label {
flex: 1;
white-space: nowrap;
}
.sort-dropdown.open .dropdown-arrow {
transform: rotate(180deg);
}
.sort-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--card-background);
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: 0 8px 24px var(--shadow);
z-index: 1000;
opacity: 0;
visibility: hidden;
transform: translateY(-4px);
transition: all 0.2s ease;
margin-top: 4px;
}
.sort-dropdown.open .sort-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.sort-option {
padding: 8px 12px;
cursor: pointer;
font-size: 14px;
color: var(--text-primary);
transition: background-color 0.15s ease;
}
.sort-option:hover {
background: rgba(244, 208, 63, 0.1);
}
.sort-option.selected {
background: rgba(244, 208, 63, 0.15);
font-weight: 500;
}
.tags {
margin-top: 0.5rem;
}
@@ -185,18 +422,6 @@
display: block;
}
.case-logo-overlay {
position: absolute;
bottom: 16px;
right: 16px;
width: 72px;
height: 72px;
object-fit: contain;
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
padding: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.card-banner-link, .card-logo-link {
display: block;
@@ -228,26 +453,64 @@
gap: 12px;
}
.search-input, .tag-filter, .sort-select {
.search-input {
width: 100%;
min-width: unset;
padding: 8px 14px;
font-size: 12px;
}
.tag-filter-container, .sort-container {
min-width: unset;
width: 100%;
}
.sort-dropdown-trigger {
padding: 8px 14px;
font-size: 12px;
}
.tag-dropdown-trigger {
padding: 8px 14px;
font-size: 12px;
}
.selected-tag {
font-size: 11px;
padding: 1px 6px;
}
.tag-dropdown-menu {
left: -4px;
right: -4px;
}
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const searchInput = document.getElementById('searchInput');
const tagFilter = document.getElementById('tagFilter');
const sortBy = document.getElementById('sortBy');
const tagDropdown = document.getElementById('tagDropdown');
const tagDropdownTrigger = tagDropdown.querySelector('.tag-dropdown-trigger');
const tagDropdownMenu = document.getElementById('tagDropdownMenu');
const tagOptions = document.getElementById('tagOptions');
const selectedTagsContainer = document.getElementById('selectedTags');
const sortDropdown = document.getElementById('sortDropdown');
const sortDropdownTrigger = sortDropdown.querySelector('.sort-dropdown-trigger');
const sortDropdownMenu = document.getElementById('sortDropdownMenu');
const sortLabel = sortDropdown.querySelector('.sort-label');
const cardGrid = document.getElementById('cardGrid');
const cards = Array.from(cardGrid.querySelectorAll('.card'));
let selectedTags = new Set();
let currentSort = 'title';
// Check for URL parameter to pre-filter by tag
const urlParams = new URLSearchParams(window.location.search);
const preSelectedTag = urlParams.get('tag');
if (preSelectedTag) {
selectedTags.add(preSelectedTag);
}
// Collect all unique tags
const allTags = new Set();
@@ -258,69 +521,154 @@ document.addEventListener('DOMContentLoaded', function() {
}
});
// Populate tag filter dropdown
Array.from(allTags).sort().forEach(tag => {
const option = document.createElement('option');
option.value = tag;
option.textContent = tag;
if (preSelectedTag && tag === preSelectedTag) {
option.selected = true;
// Populate tag dropdown
function populateTagOptions() {
tagOptions.innerHTML = '';
Array.from(allTags).sort().forEach(tag => {
const option = document.createElement('div');
option.className = 'tag-option';
option.innerHTML = `
<input type="checkbox" ${selectedTags.has(tag) ? 'checked' : ''}>
<span>${tag}</span>
`;
const checkbox = option.querySelector('input');
checkbox.addEventListener('change', function() {
if (checkbox.checked) {
selectedTags.add(tag);
} else {
selectedTags.delete(tag);
}
updateSelectedTagsDisplay();
filterAndSort();
updateURL();
});
tagOptions.appendChild(option);
});
}
// Update selected tags display
function updateSelectedTagsDisplay() {
selectedTagsContainer.innerHTML = '';
if (selectedTags.size > 0) {
tagDropdown.classList.add('has-selection');
selectedTags.forEach(tag => {
const tagElement = document.createElement('div');
tagElement.className = 'selected-tag';
tagElement.innerHTML = `
<span>${tag}</span>
<span class="remove">×</span>
`;
tagElement.querySelector('.remove').addEventListener('click', function(e) {
e.stopPropagation();
selectedTags.delete(tag);
updateSelectedTagsDisplay();
updateTagOptionStates();
filterAndSort();
updateURL();
});
selectedTagsContainer.appendChild(tagElement);
});
} else {
tagDropdown.classList.remove('has-selection');
}
tagFilter.appendChild(option);
}
// Update checkbox states in dropdown
function updateTagOptionStates() {
const checkboxes = tagOptions.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach((checkbox, index) => {
const tag = Array.from(allTags).sort()[index];
checkbox.checked = selectedTags.has(tag);
checkbox.parentElement.classList.toggle('selected', selectedTags.has(tag));
});
}
// Toggle dropdown
tagDropdownTrigger.addEventListener('click', function(e) {
e.stopPropagation();
tagDropdown.classList.toggle('open');
});
function updateTagFilter() {
// Store currently selected value
const currentSelection = tagFilter.value;
// Clear existing options except "All tags"
tagFilter.innerHTML = '<option value="">All tags</option>';
// Collect tags from currently visible cards
const visibleTags = new Set();
cards.forEach(card => {
if (!card.classList.contains('hidden')) {
const tags = card.dataset.tags;
if (tags) {
tags.split(',').forEach(tag => visibleTags.add(tag.trim()));
}
}
});
// Populate tag filter dropdown with current tags
Array.from(visibleTags).sort().forEach(tag => {
const option = document.createElement('option');
option.value = tag;
option.textContent = tag;
// Maintain selection if this tag was previously selected
if (tag === currentSelection) {
option.selected = true;
}
tagFilter.appendChild(option);
});
// Close dropdown when clicking outside
document.addEventListener('click', function(e) {
if (!tagDropdown.contains(e.target)) {
tagDropdown.classList.remove('open');
}
if (!sortDropdown.contains(e.target)) {
sortDropdown.classList.remove('open');
}
});
// Sort dropdown functionality
sortDropdownTrigger.addEventListener('click', function(e) {
e.stopPropagation();
sortDropdown.classList.toggle('open');
tagDropdown.classList.remove('open'); // Close other dropdown
});
// Sort option selection
sortDropdownMenu.addEventListener('click', function(e) {
if (e.target.classList.contains('sort-option')) {
const value = e.target.dataset.value;
const text = e.target.textContent;
// Update current sort
currentSort = value;
sortLabel.textContent = text;
// Update selected state
sortDropdownMenu.querySelectorAll('.sort-option').forEach(option => {
option.classList.remove('selected');
});
e.target.classList.add('selected');
// Close dropdown and filter
sortDropdown.classList.remove('open');
filterAndSort();
}
});
// Update URL with selected tags
function updateURL() {
const url = new URL(window.location);
if (selectedTags.size > 0) {
url.searchParams.set('tag', Array.from(selectedTags)[0]); // For simplicity, just use first tag in URL
} else {
url.searchParams.delete('tag');
}
window.history.replaceState({}, '', url);
}
function filterAndSort() {
const searchTerm = searchInput.value.toLowerCase();
const selectedTag = tagFilter.value;
const sortCriteria = sortBy.value;
const sortCriteria = currentSort;
// Filter cards
const filteredCards = cards.filter(card => {
const title = card.dataset.title.toLowerCase();
const description = card.dataset.description.toLowerCase();
const content = card.dataset.content.toLowerCase();
const tags = card.dataset.tags;
// Text search
// Full text search - search in title, description, and content
const matchesSearch = !searchTerm ||
title.includes(searchTerm) ||
description.includes(searchTerm);
description.includes(searchTerm) ||
content.includes(searchTerm);
// Tag filter
const matchesTag = !selectedTag ||
(tags && tags.split(',').map(t => t.trim()).includes(selectedTag));
// Tag filter - must match ALL selected tags
const matchesTags = selectedTags.size === 0 ||
(tags && Array.from(selectedTags).every(selectedTag =>
tags.split(',').map(t => t.trim()).includes(selectedTag)
));
return matchesSearch && matchesTag;
return matchesSearch && matchesTags;
});
// Sort filtered cards
@@ -343,28 +691,19 @@ document.addEventListener('DOMContentLoaded', function() {
card.classList.remove('hidden');
card.style.order = index;
});
// Update tag filter to show only current tags
updateTagFilter();
}
// Event listeners
searchInput.addEventListener('input', filterAndSort);
tagFilter.addEventListener('change', function() {
// Update URL when tag filter changes
const selectedTag = tagFilter.value;
const url = new URL(window.location);
if (selectedTag) {
url.searchParams.set('tag', selectedTag);
} else {
url.searchParams.delete('tag');
}
window.history.replaceState({}, '', url);
filterAndSort();
});
sortBy.addEventListener('change', filterAndSort);
// Initial sort by title
// Initialize
populateTagOptions();
updateSelectedTagsDisplay();
updateTagOptionStates();
// Initialize sort dropdown
sortDropdownMenu.querySelector('[data-value="title"]').classList.add('selected');
filterAndSort();
});
</script>

View File

@@ -21,120 +21,27 @@
{{ if .Date }}
<p><small>Last updated: {{ .Date.Format "January 2, 2006" }}</small></p>
{{ end }}
{{ if .Params.tags }}
<div class="tags">
{{ range .Params.tags }}
<a href="/{{ $.Section }}/?tag={{ . | urlize }}" class="tag">{{ . }}</a>
<div class="tags-and-button">
{{ if .Params.external_url }}
<div class="article-external-button"><a href="{{ .Params.external_url }}" target="_blank" class="btn">Website</a></div>
{{ else if .Params.url_external }}
<div class="article-external-button"><a href="{{ .Params.url_external }}" target="_blank" class="btn">Website</a></div>
{{ end }}
{{ if .Params.tags }}
<div class="tags">
{{ range .Params.tags }}
<a href="/{{ $.Section }}/?tag={{ . | urlize }}" class="tag">{{ . }}</a>
{{ end }}
</div>
{{ end }}
</div>
{{ end }}
</header>
<div class="article-content">
{{ .Content }}
</div>
{{ if .Params.external_url }}
<p><a href="{{ .Params.external_url }}" target="_blank" class="btn">Visit External Site</a></p>
{{ end }}
{{ if .Params.url_external }}
<p><a href="{{ .Params.url_external }}" target="_blank" class="btn">Visit External Site</a></p>
{{ end }}
</article>
{{ partial "explore-e2c.html" . }}
<style>
.lead {
font-size: 1.125rem;
color: #666;
margin-bottom: 1rem;
}
.article-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid #e9ecef;
}
.article-content {
margin-bottom: 2rem;
}
.article-content h2,
.article-content h3,
.article-content h4 {
margin-top: 2rem;
margin-bottom: 1rem;
}
.article-nav {
display: flex;
justify-content: space-between;
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid #e9ecef;
}
.article-nav a {
text-decoration: none;
color: #007bff;
padding: 0.5rem 0;
}
.article-nav a:hover {
color: #0056b3;
}
.tags {
margin: 0.5rem 0;
}
.tag {
display: inline-block;
background: #e9ecef;
color: #495057;
padding: 0.25rem 0.5rem;
margin: 0.25rem 0.25rem 0 0;
border-radius: 0.25rem;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.2s ease;
}
.tag:hover {
background: var(--e2c-yellow);
color: var(--text-primary);
transform: translateY(-1px);
}
.article-banner {
position: relative;
margin-bottom: 2rem;
border-radius: 16px;
overflow: hidden;
aspect-ratio: 16/9;
max-height: 300px;
}
.case-detail-banner {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.case-detail-logo-overlay {
position: absolute;
bottom: 20px;
right: 20px;
width: 96px;
height: 96px;
object-fit: contain;
background: rgba(255, 255, 255, 0.95);
border-radius: 16px;
padding: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
</style>
{{ end }}

View File

@@ -1,6 +1,8 @@
{{ define "main" }}
{{ .Content }}
{{ partial "explore-e2c.html" . }}
<style>
.featured-cases-section {
margin: 4rem 0;
@@ -72,18 +74,6 @@
background: #f8f9fa;
}
.featured-case-logo-overlay {
position: absolute;
bottom: 16px;
right: 16px;
width: 56px;
height: 56px;
object-fit: contain;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.featured-case-content {
padding: 0 1.5rem 1.5rem 1.5rem;
@@ -152,69 +142,5 @@
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Case studies data - this will be populated by Hugo
const caseStudies = [
{{ range where .Site.Pages "Section" "case-studies" }}
{{ if and .Params.image .Title (ne .Title "Case Studies") }}
{
title: "{{ .Title | replaceRE `"` `\"` }}",
description: "{{ if .Description }}{{ .Description | replaceRE `"` `\"` }}{{ else }}{{ .Summary | plainify | truncate 150 | replaceRE `"` `\"` }}{{ end }}",
url: "{{ .RelPermalink }}",
image: "{{ .Params.image }}",
banner: {{ if .Params.banner }}"{{ .Params.banner }}"{{ else }}null{{ end }}
},
{{ end }}
{{ end }}
].filter(study => study.title); // Remove any empty entries
// Function to shuffle array and get random selection
function getRandomCases(cases, count = 3) {
const shuffled = [...cases].sort(() => 0.5 - Math.random());
return shuffled.slice(0, count);
}
// Function to create case card HTML
function createCaseCard(caseStudy) {
const hasImage = caseStudy.image && caseStudy.image !== 'null' && caseStudy.image !== null;
const hasBanner = caseStudy.banner && caseStudy.banner !== 'null' && caseStudy.banner !== null;
let imageHTML = '';
if (hasBanner) {
imageHTML = `
<a href="${caseStudy.url}" class="featured-banner-link">
<div class="featured-card-banner">
<img src="${caseStudy.banner}" alt="${caseStudy.title} banner" class="featured-case-banner" />
${hasImage ? `<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo-overlay" />` : ''}
</div>
</a>
`;
} else if (hasImage) {
imageHTML = `
<a href="${caseStudy.url}" class="featured-banner-link">
<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo" />
</a>
`;
}
return `
<div class="featured-case-card">
${imageHTML}
<div class="featured-case-content">
<h3><a href="${caseStudy.url}" class="featured-case-title">${caseStudy.title}</a></h3>
<p class="featured-case-description">${caseStudy.description}</p>
</div>
</div>
`;
}
// Populate featured cases
const featuredCasesGrid = document.getElementById('featuredCasesGrid');
if (featuredCasesGrid && caseStudies.length > 0) {
const randomCases = getRandomCases(caseStudies, 3);
featuredCasesGrid.innerHTML = randomCases.map(createCaseCard).join('');
}
});
</script>
{{ partial "homepage-scripts.html" . }}
{{ end }}

View File

@@ -0,0 +1,20 @@
<div class="main-sections">
<h2>Explore E2C</h2>
<div class="primary-cards">
<div class="primary-card">
<h3>Case Studies</h3>
<p>Real examples of companies that have attempted or achieved community ownership transitions</p>
<a href="/case-studies/" class="btn">Explore Cases</a>
</div>
<div class="primary-card">
<h3>Legal Snippets</h3>
<p>Legal documents and frameworks for implementing community ownership structures</p>
<a href="/legal-snippets/" class="btn">Explore Legal Snippets</a>
</div>
<div class="primary-card">
<h3>Resources</h3>
<p>Educational materials, primers, and guides for Exit to Community transitions</p>
<a href="/resources/" class="btn">Explore Resources</a>
</div>
</div>
</div>

View File

@@ -0,0 +1,65 @@
<script>
document.addEventListener('DOMContentLoaded', function() {
// Case studies data - this will be populated by Hugo
const caseStudies = [
{{ range where .Site.Pages "Section" "case-studies" }}
{{ if and .Params.image .Title (ne .Title "Case Studies") }}
{
title: "{{ .Title | replaceRE `"` `\"` }}",
description: "{{ if .Description }}{{ .Description | replaceRE `"` `\"` }}{{ else }}{{ .Summary | plainify | truncate 150 | replaceRE `"` `\"` }}{{ end }}",
url: "{{ .RelPermalink }}",
image: "{{ .Params.image }}",
banner: {{ if .Params.banner }}"{{ .Params.banner }}"{{ else }}null{{ end }}
},
{{ end }}
{{ end }}
].filter(study => study.title); // Remove any empty entries
// Function to shuffle array and get random selection
function getRandomCases(cases, count = 3) {
const shuffled = [...cases].sort(() => 0.5 - Math.random());
return shuffled.slice(0, count);
}
// Function to create case card HTML
function createCaseCard(caseStudy) {
const hasImage = caseStudy.image && caseStudy.image !== 'null' && caseStudy.image !== null;
const hasBanner = caseStudy.banner && caseStudy.banner !== 'null' && caseStudy.banner !== null;
let imageHTML = '';
if (hasBanner) {
imageHTML = `
<a href="${caseStudy.url}" class="featured-banner-link">
<div class="featured-card-banner">
<img src="${caseStudy.banner}" alt="${caseStudy.title} banner" class="featured-case-banner" />
${hasImage ? `<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="case-logo-overlay" />` : ''}
</div>
</a>
`;
} else if (hasImage) {
imageHTML = `
<a href="${caseStudy.url}" class="featured-banner-link">
<img src="${caseStudy.image}" alt="${caseStudy.title} logo" class="featured-case-logo" />
</a>
`;
}
return `
<div class="featured-case-card">
${imageHTML}
<div class="featured-case-content">
<h3><a href="${caseStudy.url}" class="featured-case-title">${caseStudy.title}</a></h3>
<p class="featured-case-description">${caseStudy.description}</p>
</div>
</div>
`;
}
// Populate featured cases
const featuredCasesGrid = document.getElementById('featuredCasesGrid');
if (featuredCasesGrid && caseStudies.length > 0) {
const randomCases = getRandomCases(caseStudies, 3);
featuredCasesGrid.innerHTML = randomCases.map(createCaseCard).join('');
}
});
</script>

1080
static/css/main.css Normal file

File diff suppressed because it is too large Load Diff

50
static/js/mobile-menu.js Normal file
View File

@@ -0,0 +1,50 @@
// Mobile Menu Functionality
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuToggle = document.querySelector('.mobile-menu-toggle');
const navLinks = document.querySelector('.nav-links');
const overlay = document.querySelector('.mobile-menu-overlay');
const body = document.body;
function toggleMenu() {
const isActive = mobileMenuToggle.classList.contains('active');
if (isActive) {
mobileMenuToggle.classList.remove('active');
navLinks.classList.remove('active');
overlay.classList.remove('active');
body.classList.remove('menu-open');
} else {
mobileMenuToggle.classList.add('active');
navLinks.classList.add('active');
overlay.classList.add('active');
body.classList.add('menu-open');
}
}
function closeMenu() {
mobileMenuToggle.classList.remove('active');
navLinks.classList.remove('active');
overlay.classList.remove('active');
body.classList.remove('menu-open');
}
if (mobileMenuToggle && navLinks && overlay) {
mobileMenuToggle.addEventListener('click', toggleMenu);
// Close menu when clicking on overlay
overlay.addEventListener('click', closeMenu);
// Close menu when clicking on a link
const navLinksItems = navLinks.querySelectorAll('a');
navLinksItems.forEach(link => {
link.addEventListener('click', closeMenu);
});
// Close menu on escape key
document.addEventListener('keydown', function(event) {
if (event.key === 'Escape') {
closeMenu();
}
});
}
});