Initial commit: Wichita Bitcoiners website with dark theme
This commit is contained in:
commit
ee7c4bcff8
17 changed files with 957 additions and 0 deletions
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
BIN
assets/Wichita_Bitcoiners_Flag.png
Normal file
BIN
assets/Wichita_Bitcoiners_Flag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
BIN
assets/favicon.ico
Normal file
BIN
assets/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
7
content/_index.md
Normal file
7
content/_index.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Welcome to Wichita Bitcoiners"
|
||||
date: 2024-01-01T00:00:00Z
|
||||
draft: false
|
||||
---
|
||||
|
||||
Wichita Bitcoiners is a community dedicated to Bitcoin education and adoption in Wichita, Kansas.
|
||||
9
hugo.yaml
Normal file
9
hugo.yaml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
baseURL: 'https://wichitabitcoiners.com'
|
||||
languageCode: 'en-us'
|
||||
title: 'Wichita Bitcoiners'
|
||||
theme: ''
|
||||
|
||||
params:
|
||||
description: 'Wichita Bitcoiners meetup group - Bitcoin education and community in Wichita, Kansas'
|
||||
logo: '/Wichita_Bitcoiners_Flag.png'
|
||||
favicon: '/favicon.ico'
|
||||
223
layouts/_default/baseof.html
Normal file
223
layouts/_default/baseof.html
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<link rel="icon" href="{{ .Site.Params.favicon }}">
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: white;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #f7931a;
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
|
||||
color: white;
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 2rem;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.btn {
|
||||
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;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #f7931a;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card h4 {
|
||||
color: #f7931a;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #333;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="header-content">
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>Building Bitcoin Community in Wichita</h2>
|
||||
<p>Join us for monthly meetups, educational sessions, and networking with fellow Bitcoin enthusiasts in south-central Kansas.</p>
|
||||
<a href="#meetup-info" class="btn">Join Our Meetup</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<main class="content">
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<h3>About Wichita Bitcoiners</h3>
|
||||
<p style="text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #666;">
|
||||
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>
|
||||
</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">
|
||||
<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>
|
||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
||||
<strong>Where:</strong> Various locations around Wichita</p>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h4>🎓 Learn More</h4>
|
||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>© 2024 Wichita Bitcoiners. Building the future of money, one satoshi at a time.</p>
|
||||
<p style="margin-top: 1rem; opacity: 0.8;">Questions? Contact us at wichitabitcoiners@example.com</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
225
layouts/_default/single.html
Normal file
225
layouts/_default/single.html
Normal file
|
|
@ -0,0 +1,225 @@
|
|||
{{ define "main" }}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<link rel="icon" href="{{ .Site.Params.favicon }}">
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: white;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #f7931a;
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
|
||||
color: white;
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 2rem;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.btn {
|
||||
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;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #f7931a;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card h4 {
|
||||
color: #f7931a;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #333;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="header-content">
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>Building Bitcoin Community in Wichita</h2>
|
||||
<p>Join us for monthly meetups, educational sessions, and networking with fellow Bitcoin enthusiasts in south-central Kansas.</p>
|
||||
<a href="#meetup-info" class="btn">Join Our Meetup</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<main class="content">
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<h3>About Wichita Bitcoiners</h3>
|
||||
<p style="text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #666;">
|
||||
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>
|
||||
</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">
|
||||
<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>
|
||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
||||
<strong>Where:</strong> Various locations around Wichita</p>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h4>🎓 Learn More</h4>
|
||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>© 2024 Wichita Bitcoiners. Building the future of money, one satoshi at a time.</p>
|
||||
<p style="margin-top: 1rem; opacity: 0.8;">Questions? Contact us at wichitabitcoiners@example.com</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
223
layouts/index.html
Normal file
223
layouts/index.html
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<link rel="icon" href="{{ .Site.Params.favicon }}">
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: #111;
|
||||
box-shadow: 0 2px 5px rgba(255,255,255,0.1);
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #f7931a;
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
|
||||
color: white;
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 2rem;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.btn {
|
||||
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;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #f7931a;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: #111;
|
||||
padding: 2rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card h4 {
|
||||
color: #f7931a;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #111;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="header-content">
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<img src="{{ .Site.Params.logo }}" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>Building Bitcoin Community in Wichita</h2>
|
||||
<p>Join us for monthly meetups, educational sessions, and networking with fellow Bitcoin enthusiasts in south-central Kansas.</p>
|
||||
<a href="#meetup-info" class="btn">Join Our Meetup</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<main class="content">
|
||||
<div class="container">
|
||||
<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 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>
|
||||
</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">
|
||||
<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>
|
||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
||||
<strong>Where:</strong> Various locations around Wichita</p>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h4>🎓 Learn More</h4>
|
||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>© 2024 Wichita Bitcoiners. Building the future of money, one satoshi at a time.</p>
|
||||
<p style="margin-top: 1rem; opacity: 0.8;">Questions? Contact us at info@wichitabitcoiners.com</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
BIN
public/Wichita_Bitcoiners_Flag.png
Normal file
BIN
public/Wichita_Bitcoiners_Flag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
11
public/categories/index.xml
Normal file
11
public/categories/index.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on Wichita Bitcoiners</title>
|
||||
<link>http://localhost:1313/categories/</link>
|
||||
<description>Recent content in Categories on Wichita Bitcoiners</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
224
public/index.html
Normal file
224
public/index.html
Normal file
|
|
@ -0,0 +1,224 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.152.2"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Wichita Bitcoiners</title>
|
||||
<meta name="description" content="Wichita Bitcoiners meetup group - Bitcoin education and community in Wichita, Kansas">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #fff;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: #111;
|
||||
box-shadow: 0 2px 5px rgba(255,255,255,0.1);
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #f7931a;
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
|
||||
color: white;
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 2rem;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.btn {
|
||||
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;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #f7931a;
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: #111;
|
||||
padding: 2rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 10px rgba(255,255,255,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card h4 {
|
||||
color: #f7931a;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
background: #111;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="header-content">
|
||||
<img src="/Wichita_Bitcoiners_Flag.png" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
<h1>Wichita Bitcoiners</h1>
|
||||
<img src="/Wichita_Bitcoiners_Flag.png" alt="Wichita Bitcoiners Flag" class="logo">
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<h2>Building Bitcoin Community in Wichita</h2>
|
||||
<p>Join us for monthly meetups, educational sessions, and networking with fellow Bitcoin enthusiasts in south-central Kansas.</p>
|
||||
<a href="#meetup-info" class="btn">Join Our Meetup</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<main class="content">
|
||||
<div class="container">
|
||||
<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 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>
|
||||
</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">
|
||||
<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>
|
||||
<strong>Time:</strong> 6:30 PM - 8:30 PM<br>
|
||||
<strong>Where:</strong> Various locations around Wichita</p>
|
||||
</div>
|
||||
<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>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h4>🎓 Learn More</h4>
|
||||
<p>Resources for beginners and advanced users alike. No prior Bitcoin knowledge required - curiosity is enough!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p>© 2024 Wichita Bitcoiners. Building the future of money, one satoshi at a time.</p>
|
||||
<p style="margin-top: 1rem; opacity: 0.8;">Questions? Contact us at info@wichitabitcoiners.com</p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
12
public/index.xml
Normal file
12
public/index.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Welcome to Wichita Bitcoiners on Wichita Bitcoiners</title>
|
||||
<link>http://localhost:1313/</link>
|
||||
<description>Recent content in Welcome to Wichita Bitcoiners on Wichita Bitcoiners</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate></lastBuildDate>
|
||||
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
12
public/sitemap.xml
Normal file
12
public/sitemap.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>http://localhost:1313/</loc>
|
||||
<lastmod>2024-01-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/categories/</loc>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/tags/</loc>
|
||||
</url>
|
||||
</urlset>
|
||||
11
public/tags/index.xml
Normal file
11
public/tags/index.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Tags on Wichita Bitcoiners</title>
|
||||
<link>http://localhost:1313/tags/</link>
|
||||
<description>Recent content in Tags on Wichita Bitcoiners</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="http://localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
BIN
static/Wichita_Bitcoiners_Flag.png
Normal file
BIN
static/Wichita_Bitcoiners_Flag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
Loading…
Add table
Reference in a new issue