-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added SCOTUS argument and advocate data for terms 1955-1962 (with mor…
…e to come)
- Loading branch information
Showing
5 changed files
with
53,853 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,8 @@ | |
}, | ||
"cSpell.words": [ | ||
"endunless", | ||
"endwhile", | ||
"forloop", | ||
"Justia", | ||
"Kirkham", | ||
"NAID", | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{%- assign source = "arguments" %} | ||
{%- assign arguments = site.data[source] %} | ||
<h2>All Processed Terms (October Term 1955 through October Term 1962)</h2> | ||
<ul> | ||
{%- assign prev_date = "" %} | ||
{%- for event in arguments %} | ||
{%- assign first_date = event.dates[0] | split: ":" %} | ||
{%- if first_date[1] != prev_date %} | ||
{%- if prev_date != "" %} | ||
</ul> | ||
</li> | ||
{%- endif %} | ||
<li>{{ first_date[1] }} | ||
<ul> | ||
{%- endif %} | ||
{%- for docket in event.dockets %} | ||
{%- assign i = forloop.index0 %} | ||
<li>No. {{ docket }}, {{ event.titles[i] }}{% unless forloop.last %}</li>{% endunless %} | ||
{%- endfor %} | ||
<ul> | ||
{%- for link in event.oyez %} | ||
<li><a href="{{ link }}">{{ link }}</a></li> | ||
{%- endfor %} | ||
{%- for link in event.nara %} | ||
{%- assign link_parts = link | split: "/" %} | ||
{%- assign link_index = link_parts | size | minus: 1 %} | ||
<li><a href="{{ link }}">{{ link_parts[link_index] }}</a></li> | ||
{%- endfor %} | ||
</ul> | ||
</li> | ||
{%- assign prev_date = first_date[1] %} | ||
{%- endfor %} | ||
{%- if prev_date != "" %} | ||
</ul> | ||
</li> | ||
{%- endif %} | ||
</ul> |
Oops, something went wrong.