25 lines
515 B
HTML
25 lines
515 B
HTML
---
|
|
title:
|
|
type: 'string'
|
|
description:
|
|
type: 'string'
|
|
url:
|
|
type: 'string'
|
|
tags:
|
|
type: 'array'
|
|
default: []
|
|
---
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<a href="{{ url }}">
|
|
<p class="fs-2 card-title fw-bold text-primary text-decoration-underline">
|
|
{{- title -}}
|
|
</p>
|
|
</a>
|
|
<p class="card-text">{{- description -}}</p>
|
|
{% for tag in tags %}
|
|
<span class="card-link bg-body-color rounded-3 px-2 py-1 text-white">{{- tag -}}</span>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|