Fix duplication: Remove hardcoded HTML, render content entirely from markdown with CSS styling
This commit is contained in:
parent
159d63d80a
commit
04749e9857
4 changed files with 214 additions and 94 deletions
|
|
@ -6,7 +6,7 @@ description: "Join us for monthly meetups, educational sessions, and networking
|
||||||
hero_button: '<a href="#meetup-info" class="btn">Join Our Meetup</a>'
|
hero_button: '<a href="#meetup-info" class="btn">Join Our Meetup</a>'
|
||||||
---
|
---
|
||||||
|
|
||||||
We're a group dedicated to Bitcoin education, adoption, and community building in south-central Kansas. Whether you're an OG or just starting to learn about Bitcoin, you'll find a welcoming community here.
|
We're a grassroots group dedicated to Bitcoin education, adoption, and community building in Wichita, Kansas. Whether you're a seasoned Bitcoiner or just curious about digital currency, you'll find a welcoming community here.
|
||||||
|
|
||||||
What We Do {#meetup-info}
|
What We Do {#meetup-info}
|
||||||
------------
|
------------
|
||||||
|
|
@ -15,7 +15,7 @@ What We Do {#meetup-info}
|
||||||
|
|
||||||
Learn about Bitcoin technology, wallet security, mining, and best practices from experienced community members.
|
Learn about Bitcoin technology, wallet security, mining, and best practices from experienced community members.
|
||||||
|
|
||||||
### 🤝 Meetups
|
### 🤝 Monthly Meetups
|
||||||
|
|
||||||
Join us for informal gatherings to discuss Bitcoin news, share experiences, and network with local enthusiasts.
|
Join us for informal gatherings to discuss Bitcoin news, share experiences, and network with local enthusiasts.
|
||||||
|
|
||||||
|
|
@ -46,3 +46,5 @@ We Want To Hear From You!
|
||||||
### 📋 Questionnaire
|
### 📋 Questionnaire
|
||||||
|
|
||||||
We're building out a schedule of events and would love to get your input. You can join our mailing list here as well.
|
We're building out a schedule of events and would love to get your input. You can join our mailing list here as well.
|
||||||
|
|
||||||
|
[Take Questionnaire](https://docs.google.com/forms/d/e/1FAIpQLSdgbyNePv_2NM_m4fjeWYATqLNyDgz5hRhmlzXTrUhWvR-oQw/viewform?usp=header)
|
||||||
|
|
@ -8,3 +8,4 @@ params:
|
||||||
logo: '/Wichita_Bitcoiners_Flag.png'
|
logo: '/Wichita_Bitcoiners_Flag.png'
|
||||||
favicon: '/favicon.ico'
|
favicon: '/favicon.ico'
|
||||||
contact_email: 'info@wichitabitcoiners.com'
|
contact_email: 'info@wichitabitcoiners.com'
|
||||||
|
questionnaire_enabled: true
|
||||||
|
|
@ -1,49 +1,97 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ $content := .Content }}
|
<div class="content-wrapper">
|
||||||
|
{{ .Content }}
|
||||||
<div class="section">
|
|
||||||
<h3>About Wichita Bitcoiners</h3>
|
|
||||||
<p style="text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #ccc;">
|
|
||||||
We're a grassroots group dedicated to Bitcoin education, adoption, and community building in Wichita, Kansas.
|
|
||||||
Whether you're a seasoned Bitcoiner or just curious about digital currency, you'll find a welcoming community here.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="section" id="meetup-info">
|
<style>
|
||||||
<h3>What We Do</h3>
|
.content-wrapper h2 {
|
||||||
<div class="card-grid">
|
color: #f7931a;
|
||||||
<div class="card">
|
font-size: 2rem;
|
||||||
<h4>📚 Educational Sessions</h4>
|
margin: 2rem 0 1rem;
|
||||||
<p>Learn about Bitcoin technology, wallet security, mining, and best practices from experienced community members.</p>
|
text-align: center;
|
||||||
</div>
|
}
|
||||||
<div class="card">
|
|
||||||
<h4>🤝 Monthly Meetups</h4>
|
|
||||||
<p>Join us for informal gatherings to discuss Bitcoin news, share experiences, and network with local enthusiasts.</p>
|
|
||||||
</div>
|
|
||||||
<div class="card">
|
|
||||||
<h4>🎯 Bitcoin Adoption</h4>
|
|
||||||
<p>Help promote Bitcoin awareness and adoption in Wichita through community outreach and merchant education.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
.content-wrapper h3 {
|
||||||
<h3>Get Involved</h3>
|
color: #f7931a;
|
||||||
<div class="card-grid">
|
font-size: 1.5rem;
|
||||||
<div class="card">
|
margin: 1.5rem 0 1rem;
|
||||||
<h4>📅 Monthly Meetups</h4>
|
}
|
||||||
<p><strong>When:</strong> First Thursday of each month<br>
|
|
||||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
.content-wrapper h4 {
|
||||||
<strong>Where:</strong> Various locations around Wichita</p>
|
color: #f7931a;
|
||||||
</div>
|
font-size: 1.25rem;
|
||||||
<div class="card">
|
margin-bottom: 1rem;
|
||||||
<h4>💬 Stay Connected</h4>
|
}
|
||||||
<p>Join our online community to stay updated on events, ask questions, and connect with other Bitcoin enthusiasts.</p>
|
|
||||||
</div>
|
.content-wrapper p {
|
||||||
<div class="card">
|
max-width: 800px;
|
||||||
<h4>🎓 Learn More</h4>
|
margin: 0 auto 1rem;
|
||||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
font-size: 1.1rem;
|
||||||
</div>
|
color: #ccc;
|
||||||
</div>
|
text-align: center;
|
||||||
</div>
|
}
|
||||||
|
|
||||||
|
.content-wrapper strong {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a {
|
||||||
|
color: #f7931a;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a:hover {
|
||||||
|
color: #ff9500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Card styling for section content */
|
||||||
|
.content-wrapper > h3 + p {
|
||||||
|
background: #111;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Special styling for sections with multiple h4 elements */
|
||||||
|
.content-wrapper h3[id="meetup-info"],
|
||||||
|
.content-wrapper h3[id="get-involved"] {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h3[id="meetup-info"] ~ h4,
|
||||||
|
.content-wrapper h3[id="get-involved"] ~ h4 {
|
||||||
|
background: #111;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||||
|
text-align: center;
|
||||||
|
margin: 2rem auto;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h3[id="meetup-info"] ~ h4 h4,
|
||||||
|
.content-wrapper h3[id="get-involved"] ~ h4 h4 {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Questionnaire button styling */
|
||||||
|
.content-wrapper a[href*="google.com/forms"] {
|
||||||
|
display: inline-block;
|
||||||
|
background: white;
|
||||||
|
color: #f7931a;
|
||||||
|
padding: 1rem 2rem;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 600;
|
||||||
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a[href*="google.com/forms"]:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
@ -169,53 +169,122 @@
|
||||||
<main class="content">
|
<main class="content">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
|
<div class="content-wrapper">
|
||||||
|
<p>We’re a grassroots group dedicated to Bitcoin education, adoption, and community building in Wichita, Kansas. Whether you’re a seasoned Bitcoiner or just curious about digital currency, you’ll find a welcoming community here.</p>
|
||||||
<div class="section">
|
<h2 id="meetup-info">What We Do</h2>
|
||||||
<h3>About Wichita Bitcoiners</h3>
|
<h3 id="-educational-sessions">📚 Educational Sessions</h3>
|
||||||
<p style="text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #ccc;">
|
|
||||||
We're a grassroots group dedicated to Bitcoin education, adoption, and community building in Wichita, Kansas.
|
|
||||||
Whether you're a seasoned Bitcoiner or just curious about digital currency, you'll find a welcoming community here.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section" id="meetup-info">
|
|
||||||
<h3>What We Do</h3>
|
|
||||||
<div class="card-grid">
|
|
||||||
<div class="card">
|
|
||||||
<h4>📚 Educational Sessions</h4>
|
|
||||||
<p>Learn about Bitcoin technology, wallet security, mining, and best practices from experienced community members.</p>
|
<p>Learn about Bitcoin technology, wallet security, mining, and best practices from experienced community members.</p>
|
||||||
</div>
|
<h3 id="-monthly-meetups">🤝 Monthly Meetups</h3>
|
||||||
<div class="card">
|
|
||||||
<h4>🤝 Monthly Meetups</h4>
|
|
||||||
<p>Join us for informal gatherings to discuss Bitcoin news, share experiences, and network with local enthusiasts.</p>
|
<p>Join us for informal gatherings to discuss Bitcoin news, share experiences, and network with local enthusiasts.</p>
|
||||||
</div>
|
<h3 id="-bitcoin-adoption">🎯 Bitcoin Adoption</h3>
|
||||||
<div class="card">
|
|
||||||
<h4>🎯 Bitcoin Adoption</h4>
|
|
||||||
<p>Help promote Bitcoin awareness and adoption in Wichita through community outreach and merchant education.</p>
|
<p>Help promote Bitcoin awareness and adoption in Wichita through community outreach and merchant education.</p>
|
||||||
</div>
|
<h2 id="get-involved">Get Involved</h2>
|
||||||
</div>
|
<h3 id="-monthly-meetups-1">📅 Monthly Meetups</h3>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="section">
|
|
||||||
<h3>Get Involved</h3>
|
|
||||||
<div class="card-grid">
|
|
||||||
<div class="card">
|
|
||||||
<h4>📅 Monthly Meetups</h4>
|
|
||||||
<p><strong>When:</strong> First Thursday of each month<br>
|
<p><strong>When:</strong> First Thursday of each month<br>
|
||||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
||||||
<strong>Where:</strong> Various locations around Wichita</p>
|
<strong>Where:</strong> Various locations around Wichita</p>
|
||||||
</div>
|
<h3 id="-stay-connected">💬 Stay Connected</h3>
|
||||||
<div class="card">
|
|
||||||
<h4>💬 Stay Connected</h4>
|
|
||||||
<p>Join our online community to stay updated on events, ask questions, and connect with other Bitcoin enthusiasts.</p>
|
<p>Join our online community to stay updated on events, ask questions, and connect with other Bitcoin enthusiasts.</p>
|
||||||
</div>
|
<h3 id="-learn-more">🎓 Learn More</h3>
|
||||||
<div class="card">
|
|
||||||
<h4>🎓 Learn More</h4>
|
|
||||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
||||||
|
<h2 id="we-want-to-hear-from-you">We Want To Hear From You!</h2>
|
||||||
|
<h3 id="-questionnaire">📋 Questionnaire</h3>
|
||||||
|
<p>We’re building out a schedule of events and would love to get your input. You can join our mailing list here as well.</p>
|
||||||
|
<p><a href="https://docs.google.com/forms/d/e/1FAIpQLSdgbyNePv_2NM_m4fjeWYATqLNyDgz5hRhmlzXTrUhWvR-oQw/viewform?usp=header">Take Questionnaire</a></p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
<style>
|
||||||
|
.content-wrapper h2 {
|
||||||
|
color: #f7931a;
|
||||||
|
font-size: 2rem;
|
||||||
|
margin: 2rem 0 1rem;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h3 {
|
||||||
|
color: #f7931a;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin: 1.5rem 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h4 {
|
||||||
|
color: #f7931a;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper p {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto 1rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
color: #ccc;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper strong {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a {
|
||||||
|
color: #f7931a;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a:hover {
|
||||||
|
color: #ff9500;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.content-wrapper > h3 + p {
|
||||||
|
background: #111;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.content-wrapper h3[id="meetup-info"],
|
||||||
|
.content-wrapper h3[id="get-involved"] {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h3[id="meetup-info"] ~ h4,
|
||||||
|
.content-wrapper h3[id="get-involved"] ~ h4 {
|
||||||
|
background: #111;
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||||
|
text-align: center;
|
||||||
|
margin: 2rem auto;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper h3[id="meetup-info"] ~ h4 h4,
|
||||||
|
.content-wrapper h3[id="get-involved"] ~ h4 h4 {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.content-wrapper a[href*="google.com/forms"] {
|
||||||
|
display: inline-block;
|
||||||
|
background: white;
|
||||||
|
color: #f7931a;
|
||||||
|
padding: 1rem 2rem;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 600;
|
||||||
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-wrapper a[href*="google.com/forms"]:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue