1
0
mirror of synced 2026-01-05 21:04:17 -05:00
Files
docs/includes/discussions-community-card.html
Kevin Heis 46c16001c3 Upgrade Primer with translation shim for trashcan icon (#18735)
* Revert "Revert "Upgrade Primer CSS to 16 (#18713)""

This reverts commit c01d3e302e.

* Add a hack to handle trashcan icon in translated content
2021-04-13 18:38:04 +00:00

15 lines
697 B
HTML

<div class="col-12 col-xl-4 col-lg-6 mb-4 js-filter-card {% if forloop.index0 > 5 %}d-none{% endif %}" data-repo="{{ example.repo }}" data-description="{{ example.description }}">
<a
class="Box d-flex height-full color-shadow-medium hover-shadow-large no-underline color-text-primary p-4"
href="https://github.com/{{ example.repo }}/discussions"
>
<div class="flex-shrink-0 mr-3">
<img src="https://github.com/{{ example.repo | split: '/' | first }}.png" alt="{{ example.repo }}" class="avatar avatar-8">
</div>
<div class="flex-auto">
<h4>{{ example.repo }}</h4>
<p class="mt-1 color-text-tertiary">{{ example.description }}</p>
</div>
</a>
</div>