Quick Workflow
From Claude/vim: Generate figures → Export tables → Drop in new directory → Copy template → Push to GitHub → Instant hosted page. No IDE needed!
Files
- research-page.html — Base template with all components
- research.css — Standardized styles
- README.md — Full documentation
Components
Stat Cards
<div class="stat-card">
<div class="stat-value">1,234</div>
<div class="stat-label">Your Metric</div>
</div>
Key Finding Box
<div class="key-finding">
<h3>Key Finding</h3>
<p>Important insight here.</p>
</div>
Figure with Caption
<div class="figure">
<img src="figure1.png" alt="Description">
<p class="caption"><strong>Figure 1:</strong> Explanation.</p>
</div>
Data Table
<table>
<thead>
<tr><th>Column 1</th><th>Column 2</th></tr>
</thead>
<tbody>
<tr><td>Data</td><td>More data</td></tr>
</tbody>
</table>
Design System
#2563eb
Blue (Primary)
#16a34a
Green (Success)
#ca8a04
Yellow (Warning)
#dc2626
Red (Error)