ribbon.html 572 字节
Newer Older
C
chomik 已提交
1 2 3 4 5
{% assign product-id = include.product-id | default: 0 %}
{% assign product = site.data.products[product-id] %}

<div class="card">
	<div class="card-body p-5">
C
chomik 已提交
6
		<div class="h-10"></div>
C
chomik 已提交
7 8
	</div>

C
ribbons  
chomik 已提交
9 10
	<div class="ribbon{% if include.top %} ribbon-top{% endif %}{% if include.left %} ribbon-left{% endif %}{% if include.bottom %} ribbon-bottom{% endif %}{% if include.bookmark %} ribbon-bookmark{% endif %}{% if include.color %} bg-{{ include.color }}{% endif %}">{% if include.text %}{{ include.text }}{% else %}{% include ui/icon.html icon="star" %}{% endif %}</div>
</div>