15 lines
744 B
HTML
15 lines
744 B
HTML
{% assign publications = include.publications %}
|
|
<div class="my-3 p-0 bg-white shadow-sm rounded-xl">
|
|
<h6 class="border-bottom border-gray p-3 mb-0">
|
|
{% if include.title %}{{ include.title }}{% else %}<i class="fas fa-star"></i> Selected Recent Publications{% endif %}
|
|
<a href="{{ 'publications' | relative_url }}">(view all <i class="fas fa-angle-double-right"></i>)</a>
|
|
</h6>
|
|
{% for item in publications limit:include.limit %}
|
|
{% include widgets/publication_item.html item=item first=false last=false %}
|
|
{% endfor %}
|
|
<h6 class="d-block p-3 mt-0 text-right">
|
|
<a href="{{ 'publications' | relative_url }}">All publications <i class="fas fa-angle-double-right"></i></a>
|
|
</h6>
|
|
</div>
|
|
|