adding website

This commit is contained in:
2026-04-28 22:50:53 -04:00
parent e75c077e16
commit 72eb2d8c3d
19 changed files with 3376 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{% extends "base.html" %}
{% block title %}Legislative Accountability{% endblock %}
{% block body %}
<main class="shell">
<section class="page-heading">
<div>
<h1>Legislative accountability</h1>
<p>US legislative accountability · precomputed legislator topic scores{% if latest_score_year %} through {{ latest_score_year }}{% endif %}</p>
</div>
<div class="heading-actions">
<a href="#" aria-disabled="true">Methodology</a>
<a href="#" aria-disabled="true">Data sources</a>
<span>Last updated: {{ last_updated.strftime("%b %Y") if last_updated else "Unavailable" }}</span>
</div>
</section>
<div class="notice">Choose one or more score topics, then select lawmakers to compare computed records over time.</div>
<div id="dashboard-body">
{% include "partials/_dashboard.html" %}
</div>
</main>
<footer class="footer">
<span>Actual record, not rhetoric</span>
<span>Source: congressional roll-call votes</span>
<span>Not affiliated with any political party or organization</span>
</footer>
{% endblock %}