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