|
| 1 | +```{=html} |
| 2 | +<div class="list quarto-listing-default"> |
| 3 | + <% for (const item of items) { %> |
| 4 | + |
| 5 | + <div class="quarto-post image-right" <%= metadataAttrs(item) %> > |
| 6 | + <div class="thumbnail"> |
| 7 | + <a href="<%- item.path %>"> |
| 8 | +
|
| 9 | + <p> |
| 10 | + <% if (item.image) { %> |
| 11 | + <img alt="<%= item.title %>" src="<%= item.image %>" class="thumbnail-image"> |
| 12 | + <% } %> |
| 13 | +
|
| 14 | + </p> |
| 15 | + |
| 16 | +
|
| 17 | + </a> |
| 18 | + </div> |
| 19 | + <div class="body"> |
| 20 | + <a href="<%- item.path %>"> |
| 21 | + <h3 class="no-anchor listing-pub-title listing-title"><%= item.title %></h3> |
| 22 | + </a> |
| 23 | + |
| 24 | + <div class="listing-pub-author listing-author"> |
| 25 | + <%= item.author %><br> |
| 26 | + </div> |
| 27 | + |
| 28 | + <div class="metadata-value listing-pub-journal listing-publication"> |
| 29 | + <% if (item.journ) { %> |
| 30 | + <i><%= item.journ %></i><% if (item.issue) { %>, <b><%= item.issue %></b><% } %><% if (item.page) { %>, <%= item.page %><% } %><% if (item.year) { %> (<%= item.year %>)<% } %><br> |
| 31 | + |
| 32 | + <% } %> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + <div class="metadata"> |
| 36 | + <% if (item.pub_number) { %> |
| 37 | + <div class="listing-pub-number"> |
| 38 | + <%= item.pub_number %><br> |
| 39 | + </div> |
| 40 | + <% } %> |
| 41 | +
|
| 42 | + <% if (item.url_source) { %> |
| 43 | + <div class="listing-pub-url"> |
| 44 | + <a href="<%- item.url_source %>"> |
| 45 | + <p>URL <i class="bi bi-box-arrow-up-right"></i></p> |
| 46 | + </a> |
| 47 | + </div> |
| 48 | + <% } %> |
| 49 | +
|
| 50 | + <% if (item.url_preprint) { %> |
| 51 | + <div class="listing-pub-url"> |
| 52 | + <a href="<%- item.url_preprint %>"> |
| 53 | + <p>preprint URL <i class="bi bi-box-arrow-up-right"></i></p> |
| 54 | + </a> |
| 55 | + </div> |
| 56 | + <% } %> |
| 57 | +
|
| 58 | + <!-- Citation metrics badges (requires external scripts loaded in _quarto.yml) --> |
| 59 | + <% if (item.doi) { %> |
| 60 | + <div class="listing-pub-metrics"> |
| 61 | + <div class="__dimensions_badge_embed__" data-doi="<%- item.doi %>" data-style="small_rectangle"></div> |
| 62 | + <div data-badge-type="donut" data-doi="<%- item.doi %>" data-condensed="true" class="altmetric-embed"></div> |
| 63 | + </div> |
| 64 | + <% } %> |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + |
| 68 | + <% } %> |
| 69 | + </div> |
| 70 | + |
| 71 | +``` |
0 commit comments