Created
July 28, 2026 14:01
-
-
Save izaaklauer/85703d1273d7ee4adee6f1ce5a6def53 to your computer and use it in GitHub Desktop.
Test fixture: fictional advocacy org site for a headline-tracker plugin demo (not a real organization)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Example Valley Forward</title> | |
| <style> | |
| body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | |
| line-height: 1.6; color: #1b2430; background: #fbfaf7; margin: 0; } | |
| .wrap { max-width: 720px; margin: 0 auto; padding: 24px; } | |
| .fixture-banner { background: #fff3cd; border: 1px solid #e0c65a; color: #5c4600; | |
| padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 28px; } | |
| h1 { font-size: 2rem; margin: 0 0 4px; } | |
| .tag { color: #5a6675; margin: 0 0 28px; } | |
| h2 { font-size: 1.25rem; margin: 32px 0 8px; } | |
| .amounts { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; } | |
| .amounts a { border: 1px solid #2f6f4f; color: #2f6f4f; text-decoration: none; | |
| padding: 8px 18px; border-radius: 6px; font-weight: 600; } | |
| footer { margin-top: 40px; padding-top: 16px; border-top: 1px solid #e2ded4; | |
| color: #5a6675; font-size: 14px; } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="wrap"> | |
| <div class="fixture-banner"> | |
| <strong>Test fixture.</strong> Example Valley Forward is a fictional organization that exists | |
| only to demonstrate software. It is not a real campaign or committee, it accepts no money, and | |
| the donate links below go to <code>example.com</code>, a reserved domain that does nothing. | |
| Please do not treat anything on this page as real. | |
| </div> | |
| <h1>Example Valley Forward</h1> | |
| <p class="tag">A grassroots advocacy organization working for an affordable, connected, | |
| livable Example Valley.</p> | |
| <h2>What we work on</h2> | |
| <ul> | |
| <li><strong>Housing affordability</strong> — more homes near transit, and protection for | |
| renters already here.</li> | |
| <li><strong>Public transit</strong> — frequent, reliable bus service that runs on nights and | |
| weekends, not just commute hours.</li> | |
| <li><strong>Clean water</strong> — getting lead service lines out of the ground and keeping | |
| the river swimmable.</li> | |
| </ul> | |
| <h2>How we talk about it</h2> | |
| <p>We are direct and urgent, and we write like neighbors talking to neighbors. No jargon, no | |
| consultant-speak. When something happens that affects the valley, we say so plainly and we say | |
| what we intend to do about it.</p> | |
| <h2>Chip in</h2> | |
| <p>We are funded entirely by small-dollar donations from people who live here.</p> | |
| <div class="amounts"> | |
| <a href="https://example.com/donate?amount=10">$10</a> | |
| <a href="https://example.com/donate?amount=25">$25</a> | |
| <a href="https://example.com/donate?amount=50">$50</a> | |
| </div> | |
| <p><a href="https://example.com/donate">Donate to Example Valley Forward</a></p> | |
| <footer> | |
| <p>— The Example Valley Forward Team</p> | |
| <p>Paid for by Example Valley Forward.</p> | |
| <p>Reply STOP to opt out of text messages.</p> | |
| </footer> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment