-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
743 lines (666 loc) · 29.9 KB
/
Copy pathindex.html
File metadata and controls
743 lines (666 loc) · 29.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>csswitch — Premium Jekyll Themes & Dev Guides</title>
<meta name="description" content="10 distinctive Jekyll themes for developer blogs. No Bootstrap. No jQuery. Just sharp, opinionated design — ready to deploy to GitHub Pages in minutes.">
<meta property="og:title" content="csswitch — Premium Jekyll Themes">
<meta property="og:description" content="10 distinctive Jekyll themes for developer blogs. No Bootstrap. No jQuery. Deploy to GitHub Pages in minutes.">
<meta property="og:url" content="https://csswitch.github.io">
<meta property="og:image" content="https://csswitch.github.io/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<link rel="canonical" href="https://csswitch.github.io">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0d0d0d;
--bg2: #141414;
--bg3: #1a1a1a;
--border: #2a2a2a;
--text: #c8c8c8;
--muted: #555;
--accent: #b06aff;
--accent2: #ff6ab0;
--green: #00ff88;
--font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
--font-sans: system-ui, -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-sans);
line-height: 1.6;
min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
/* NAV */
nav {
position: sticky; top: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 16px 32px;
background: rgba(13,13,13,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-brand {
font-family: var(--font-mono);
font-size: 18px;
font-weight: 700;
color: var(--accent);
letter-spacing: -0.5px;
}
.nav-brand span { color: var(--accent2); }
.nav-links { display: flex; gap: 24px; font-size: 14px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
/* HERO */
.hero {
max-width: 800px;
margin: 0 auto;
padding: 100px 32px 80px;
text-align: center;
}
.hero-eyebrow {
font-family: var(--font-mono);
font-size: 12px;
color: var(--accent);
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 20px;
}
.hero h1 {
font-size: clamp(36px, 6vw, 64px);
font-weight: 800;
line-height: 1.1;
letter-spacing: -2px;
margin-bottom: 20px;
color: #fff;
}
.hero h1 em {
font-style: normal;
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: 18px;
color: var(--muted);
max-width: 500px;
margin: 0 auto 40px;
}
.hero-badges {
display: flex; flex-wrap: wrap; justify-content: center;
gap: 10px; margin-bottom: 40px;
}
.badge {
font-family: var(--font-mono);
font-size: 12px;
padding: 4px 12px;
border: 1px solid var(--border);
border-radius: 20px;
color: var(--muted);
}
.badge.green { border-color: var(--green); color: var(--green); }
.badge.purple { border-color: var(--accent); color: var(--accent); }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
display: inline-block;
padding: 12px 28px;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--accent); color: #000; }
.btn-secondary {
background: transparent;
border: 1px solid var(--border);
color: var(--text);
}
/* SECTION */
section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 12px;
}
.section-title {
font-size: clamp(24px, 4vw, 38px);
font-weight: 700;
color: #fff;
letter-spacing: -1px;
margin-bottom: 48px;
}
/* THEME GRID */
.themes-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.theme-card {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 10px;
overflow: hidden;
transition: border-color 0.2s, transform 0.2s;
}
.theme-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.theme-card-preview {
height: 160px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-mono);
font-size: 13px;
border-bottom: 1px solid var(--border);
position: relative;
overflow: hidden;
}
/* Individual theme preview colors */
.preview-terminal { background: #0a0a0a; color: #00ff41; }
.preview-glass { background: linear-gradient(135deg, #1a2a4a, #2a1a4a); color: #e0f0ff; }
.preview-galaxy { background: linear-gradient(135deg, #050510, #0a0520); color: #a0c0ff; }
.preview-pixel { background: #1a0a2a; color: #ff00ff; image-rendering: pixelated; }
.preview-blueprint{ background: #0a1a2a; color: #4ab0ff; }
.preview-neon { background: #080810; color: #ff2080; }
.preview-brutalist{ background: #f0f0e8; color: #000; }
.preview-dashboard{ background: #1a1a2a; color: #60d0ff; }
.preview-vaporwave{ background: linear-gradient(135deg, #1a0a2a, #0a1a3a); color: #ff80ff; }
.preview-manuscript{ background: #f5f0e8; color: #2a1a0a; } .preview-ledger{ background: #e8f5ed; color: #1a3d1a; font-family: Georgia,serif; }
.preview-label {
position: absolute; bottom: 8px; right: 10px;
font-size: 10px; opacity: 0.4;
}
.theme-card-body { padding: 18px; }
.theme-card-name {
font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px;
}
.theme-card-desc {
font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5;
}
.theme-card-footer {
display: flex; align-items: center; justify-content: space-between;
}
.theme-price {
font-family: var(--font-mono);
font-size: 18px; font-weight: 700; color: var(--accent);
}
.theme-status {
font-family: var(--font-mono);
font-size: 11px; padding: 3px 8px;
border-radius: 4px;
}
.status-available { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid rgba(0,255,136,0.2); }
.status-soon { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--border); }
.theme-card-actions {
display: flex; gap: 8px; margin-top: 14px;
}
.btn-demo {
flex: 1; text-align: center;
padding: 8px 12px; border-radius: 6px; font-size: 13px; font-weight: 600;
border: 1px solid var(--border); color: var(--text); background: transparent;
transition: border-color .15s, color .15s;
}
.btn-demo:hover { border-color: var(--accent); color: var(--accent); }
.btn-buy {
flex: 1; text-align: center;
padding: 8px 12px; border-radius: 6px; font-size: 13px; font-weight: 600;
background: var(--accent); color: #000; border: none;
transition: opacity .15s;
}
.btn-buy:hover { opacity: 0.85; color: #000; }
/* STATS BAR */
.stats-bar {
display: flex; justify-content: center; gap: 48px;
flex-wrap: wrap;
padding: 32px;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--bg2);
}
.stat { text-align: center; }
.stat-num {
font-family: var(--font-mono);
font-size: 28px; font-weight: 800; color: var(--accent);
display: block;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
/* WHY SECTION */
.why-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
}
.why-card {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
}
.why-icon { font-size: 24px; margin-bottom: 12px; }
.why-title { font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
/* PRICING */
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
.pricing-card {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 32px;
}
.pricing-card.featured {
border-color: var(--accent);
background: linear-gradient(135deg, rgba(176,106,255,0.08), var(--bg2));
}
.pricing-badge {
font-family: var(--font-mono);
font-size: 11px; padding: 3px 8px;
border-radius: 4px;
background: var(--accent); color: #000;
display: inline-block; margin-bottom: 16px;
}
.pricing-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pricing-price {
font-family: var(--font-mono);
font-size: 40px; font-weight: 800; color: var(--accent);
margin-bottom: 4px;
}
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
font-size: 14px; color: var(--text);
padding: 6px 0; border-bottom: 1px solid var(--border);
display: flex; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓"; color: var(--green); flex-shrink: 0; }
/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 40px 32px;
text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
font-family: var(--font-mono);
font-size: 20px; font-weight: 700;
color: var(--accent); margin-bottom: 12px;
}
.footer-brand span { color: var(--accent2); }
.footer-links { display: flex; justify-content: center; gap: 24px; font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.footer-copy { font-size: 13px; color: #333; font-family: var(--font-mono); }
/* RESPONSIVE */
@media (max-width: 600px) {
nav { padding: 14px 20px; }
.nav-links { gap: 16px; }
.hero { padding: 60px 20px 60px; }
section { padding: 60px 20px; }
}
</style>
</head>
<body>
<nav>
<div class="nav-brand">css<span>witch</span> 🧙♀️</div>
<div class="nav-links">
<a href="#themes">Themes</a>
<a href="#why">Why csswitch</a>
<a href="#pricing">Pricing</a>
<a href="https://github.com/csswitch" target="_blank" rel="noopener">GitHub</a>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<p class="hero-eyebrow">Jekyll Themes & Dev Guides</p>
<h1>Themes devs<br>actually <em>want to use</em></h1>
<p class="hero-sub">No Bootstrap. No jQuery. Distinctive aesthetics — ready to deploy to GitHub Pages in minutes.</p>
<div class="hero-badges">
<span class="badge green">GitHub Pages compatible</span>
<span class="badge purple">No jQuery</span>
<span class="badge">Vanilla JS</span>
<span class="badge">10 themes</span>
<span class="badge">MIT licensed</span>
</div>
<div class="hero-cta">
<a href="#themes" class="btn btn-primary">Browse themes</a>
<a href="https://github.com/csswitch" class="btn btn-secondary" target="_blank" rel="noopener">View on GitHub</a>
</div>
</section>
<!-- STATS -->
<div class="stats-bar">
<div class="stat"><span class="stat-num">10</span><div class="stat-label">Distinctive themes</div></div>
<div class="stat"><span class="stat-num">0</span><div class="stat-label">Dependencies (jQuery, Bootstrap)</div></div>
<div class="stat"><span class="stat-num">21</span><div class="stat-label">Files per theme</div></div>
<div class="stat"><span class="stat-num">100%</span><div class="stat-label">GitHub Pages compatible</div></div>
<div class="stat"><span class="stat-num">MIT</span><div class="stat-label">License</div></div>
</div>
<!-- THEMES -->
<section id="themes" style="background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);">
<div class="section-inner">
<p class="section-label">Collection</p>
<h2 class="section-title">10 distinctive themes</h2>
<div class="themes-grid">
<div class="theme-card">
<div class="theme-card-preview preview-terminal">
<span>user@blog:~ $ █</span>
<span class="preview-label">terminal</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Terminal</div>
<div class="theme-card-desc">Retro terminal aesthetic. Green phosphor, <code>ls -la</code> post listings, CRT scanlines, boot sequence animation.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-terminal-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-terminal" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-glass">
<span style="padding:12px 20px;background:rgba(255,255,255,0.08);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.15);border-radius:8px;">Glassmorphism</span>
<span class="preview-label">glass</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Glass</div>
<div class="theme-card-desc">Frosted glassmorphism. Blur panels, aurora gradient backgrounds, smooth light/dark toggle.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-glass-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-glass" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-galaxy">
<span style="font-size:11px;text-align:center;padding:0 16px">✦ · ✦ · ✦<br>deep space blog<br>· ✦ · ✦ ·</span>
<span class="preview-label">galaxy</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Galaxy</div>
<div class="theme-card-desc">Deep space aesthetic. Canvas starfield, shooting stars, nebula gradients, comet reading progress.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-galaxy-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-galaxy" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-pixel">
<span style="image-rendering:pixelated;font-size:12px;letter-spacing:2px">█░█ PIXEL░BLOG █░█</span>
<span class="preview-label">pixel</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Pixel</div>
<div class="theme-card-desc">8-bit pixel art aesthetic. CRT scanlines, boot sequence animation, HP reading progress bar, 5 palettes.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-pixel-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-pixel" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-blueprint">
<span style="font-size:11px;border:1px dashed #4ab0ff;padding:8px 14px;opacity:0.8">SECTION A — BLOG LAYOUT</span>
<span class="preview-label">blueprint</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Blueprint</div>
<div class="theme-card-desc">Technical drawing aesthetic. Engineering grid, schematic annotations, fold marks, TOC scrollspy.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-blueprint-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-blueprint" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-neon">
<span style="text-shadow:0 0 10px #ff2080,0 0 30px #ff2080;font-size:15px;letter-spacing:3px">NEON NOIR</span>
<span class="preview-label">neon</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Neon Noir</div>
<div class="theme-card-desc">Cyberpunk neon. Perspective grid, CRT scanlines, glitch animations, electric magenta/cyan accents.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-neon-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-neon" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-brutalist">
<span style="font-size:20px;font-weight:900;text-transform:uppercase;letter-spacing:-1px;color:#000;border:3px solid #000;padding:6px 12px">BRUTALIST</span>
<span class="preview-label" style="color:#000">brutalist</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Brutalist</div>
<div class="theme-card-desc">Newspaper grid brutalism. Bebas Neue headlines, heavy rules, tabloid red accent, invert-hover links.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-brutalist-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-brutalist" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-dashboard">
<span style="font-size:11px;border:1px solid #60d0ff33;padding:6px 10px;color:#60d0ff">▣ DASHBOARD OS v2.0</span>
<span class="preview-label">dashboard</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Dashboard</div>
<div class="theme-card-desc">OS desktop UI. Window chrome cards, sidebar nav, stat widgets — like blogging from an operating system.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-dashboard-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-dashboard" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-vaporwave">
<span style="font-size:13px;letter-spacing:4px;text-shadow:0 0 10px #ff80ff">V A P O R</span>
<span class="preview-label">vaporwave</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Vaporwave</div>
<div class="theme-card-desc">Retro 80s/90s aesthetic. Pastel neon gradients, synthwave perspective grid, glitch text, CRT scanlines.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-vaporwave-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-vaporwave" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-manuscript">
<span style="font-family:Georgia,serif;font-size:14px;color:#2a1a0a;font-style:italic">A writer's notebook…</span>
<span class="preview-label" style="color:#2a1a0a">manuscript</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">Manuscript</div>
<div class="theme-card-desc">Editorial magazine aesthetic. Cormorant Garamond + Lora, drop caps, pull quotes, Oxford double rules.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-manuscript-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-manuscript" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
<div class="theme-card">
<div class="theme-card-preview preview-ledger">
<span style="font-family:Georgia,serif;">₤ General Ledger</span>
<span class="preview-label">ledger</span>
</div>
<div class="theme-card-body">
<div class="theme-card-name">The General Ledger</div>
<div class="theme-card-desc">Accounting ledger aesthetic for CPAs and finance writers. Ruled-line background, columnar post list, debit/credit table classes, print-ready.</div>
<div class="theme-card-footer">
<span class="theme-price">$49</span>
<span class="theme-status status-available">Available</span>
</div>
<div class="theme-card-actions">
<a class="btn-demo" href="https://csswitch.github.io/jekyll-ledger-theme/" target="_blank" rel="noopener">Live demo →</a>
<a class="btn-buy" href="https://gumroad.com/l/csswitch-ledger" target="_blank" rel="noopener">Buy $49</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- WHY -->
<section id="why">
<div class="section-inner">
<p class="section-label">Why csswitch</p>
<h2 class="section-title">Built differently</h2>
<div class="why-grid">
<div class="why-card">
<div class="why-icon">🚫</div>
<div class="why-title">No Bootstrap. No jQuery.</div>
<div class="why-desc">Every theme is vanilla CSS + vanilla JS. Fast, clean, no dependency nightmares.</div>
</div>
<div class="why-card">
<div class="why-icon">✅</div>
<div class="why-title">GitHub Pages native</div>
<div class="why-desc">Only whitelisted plugins. Push to GitHub, enable Pages — it just works.</div>
</div>
<div class="why-card">
<div class="why-icon">🎨</div>
<div class="why-title">Actually distinctive</div>
<div class="why-desc">Not another minimal serif blog. Each theme has a strong, deliberate visual identity.</div>
</div>
<div class="why-card">
<div class="why-icon">📖</div>
<div class="why-title">Real documentation</div>
<div class="why-desc">Every option documented. Config file is self-explanatory. Not just a README.</div>
</div>
<div class="why-card">
<div class="why-icon">📱</div>
<div class="why-title">Thoughtful responsive</div>
<div class="why-desc">Mobile layouts adapted per theme aesthetic — not just "squished desktop".</div>
</div>
<div class="why-card">
<div class="why-icon">🔍</div>
<div class="why-title">SEO ready</div>
<div class="why-desc">jekyll-seo-tag, Open Graph, canonical URLs, sitemap — all wired up.</div>
</div>
</div>
</div>
</section>
<!-- GITHUB CTA -->
<section style="text-align:center; padding: 60px 32px;">
<div style="max-width:600px;margin:0 auto;">
<div style="font-size:40px;margin-bottom:16px;">⭐</div>
<h2 style="font-size:1.6rem;color:#fff;margin-bottom:12px;">Open source at heart</h2>
<p style="color:var(--muted);font-size:15px;margin-bottom:28px;line-height:1.7">All themes are on GitHub. Browse the source, open issues, or star a repo you like. Every star helps more developers discover the pack.</p>
<a href="https://github.com/csswitch" class="btn btn-secondary" target="_blank" rel="noopener">⭐ Star us on GitHub</a>
</div>
</section>
<!-- PRICING -->
<section id="pricing" style="background: var(--bg2); border-top: 1px solid var(--border);">
<div class="section-inner">
<p class="section-label">Pricing</p>
<h2 class="section-title">Simple, fair pricing</h2>
<div class="pricing-grid">
<div class="pricing-card">
<div class="pricing-name">Single theme</div>
<div class="pricing-price">$49</div>
<div class="pricing-note">One theme, use forever</div>
<ul class="pricing-features">
<li>Full theme source</li>
<li>All color schemes</li>
<li>MIT license</li>
<li>Free updates</li>
<li>GitHub Issues support</li>
</ul>
<a href="#themes" class="btn btn-secondary" style="width:100%;text-align:center;display:block">Choose a theme</a>
</div>
<div class="pricing-card featured">
<span class="pricing-badge">Best value</span>
<div class="pricing-name">All 10 themes</div>
<div class="pricing-price">$149</div>
<div class="pricing-note">All themes, all future themes</div>
<ul class="pricing-features">
<li>All 10 themes</li>
<li>All future themes included</li>
<li>All color schemes</li>
<li>MIT license</li>
<li>Free lifetime updates</li>
<li>Priority support</li>
</ul>
<a href="https://gumroad.com/l/csswitch-bundle" class="btn btn-primary" style="width:100%;text-align:center;display:block" target="_blank" rel="noopener">Buy the bundle — $149</a>
</div>
<div class="pricing-card">
<div class="pricing-name">Ebooks & guides</div>
<div class="pricing-price">$19+</div>
<div class="pricing-note">Deep-dives on Jekyll, CSS, dev tools</div>
<ul class="pricing-features">
<li>PDF + EPUB formats</li>
<li>Code examples included</li>
<li>Free updates</li>
<li>DRM free</li>
</ul>
<a href="https://gumroad.com/csswitch" class="btn btn-secondary" style="width:100%;text-align:center;display:block" target="_blank" rel="noopener">Browse guides</a>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div class="footer-brand">css<span>witch</span> 🧙♀️</div>
<div class="footer-links">
<a href="https://github.com/csswitch">GitHub</a>
<a href="#themes">Themes</a>
<a href="#pricing">Pricing</a>
<a href="https://gumroad.com/csswitch" target="_blank" rel="noopener">Gumroad</a>
</div>
<div class="footer-copy">MIT licensed · built with Jekyll · hosted on GitHub Pages</div>
</div>
</footer>
</body>
</html>