14 lines
490 B
HTML
14 lines
490 B
HTML
{% comment %}
|
|
|
|
Adds a basic citation box for the item with reference link to the item page.
|
|
|
|
{%- endcomment -%}
|
|
<div class="card">
|
|
<div class="card-header">Attribution</div>
|
|
<div class="card-body">
|
|
<dl>
|
|
<dt>Citation:</dt>
|
|
<dd>"{{ page.title }}", {{ site.title }}, {% if site.organization-name %}{{ site.organization-name }}, {% endif %}<a href="{{ page.url | absolute_url }}">{{ page.url | absolute_url }}</a></dd>
|
|
</dl>
|
|
</div>
|
|
</div> |