{% macro link_for(url, icon) %} {% endmacro %} {% macro citation_for(ref) -%} {{ link_for(ref.url, 'quote-right') }} {%- endmacro %} {% macro bibentry(ref) -%}
"{{ ref.title }}." {{ ref.container_title_short or ref.container_title or (ref.type | title) or 'Other' }}. {{ ref.issued.year }}. {% if ref.note %}({{ ref.note }}){% endif %} {% for link in ref.links %} {{ link_for(link.href, link.icon) }} {% endfor %} {{ citation_for(ref) }}
{%- endmacro %} {% set bibcss %} /* jump links for research page, adapted from 6031 */ .margin { position: fixed; height: 100%; } a.jump { opacity: 0; position: absolute; left: -2em; padding: 0 1em 1em 1em; transition: opacity .5s 0s; } a.jump::after { content: '#'; } .margin:hover ~ * a.jump, p:hover > a.jump, a.jump:hover { opacity: 1; transition: opacity .5s 0s; } [id]:target { animation: highlightout 3s; } @keyframes highlightout { from { background: #fcf8e3; } } /* end of jump links */ .ref { position: relative; } .ref-link { z-index: 10; } {% endset %}