31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% 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 %}
|