reconnect

This commit is contained in:
Nasir Anthony Montalvo
2026-01-26 02:25:43 -06:00
parent 6609527c97
commit 0a854da998
135 changed files with 8792 additions and 1 deletions

17
.github/_includes/item/rights-box.html vendored Normal file
View File

@@ -0,0 +1,17 @@
{% comment %}
Adds a box to highlight rights information if item has a "rights" or "rightsstatement" field.
{%- endcomment -%}
<div class="card">
<div class="card-header">Rights</div>
<div class="card-body">
<dl>
{% if page.rights %}<dt>Rights:</dt>
<dd>{{ page.rights }}</dd>{% endif %}
{% if page.rightsstatement %}<dt>Standardized Rights:</dt>
<dd><a href="{{ page.rightsstatement }}">{{ page.rightsstatement }}</a>
</dd>{% endif %}
</dl>
</div>
</div>