2022-04-17 13:06:57 +00:00
|
|
|
{% macro home_card(title, description) %}
|
|
|
|
<div class="home-card__conatiner">
|
|
|
|
<img
|
|
|
|
src="{{ get_url(path='/tmp-logo.png', cachebust=true) }}"
|
|
|
|
alt="Temporary card icon"
|
|
|
|
class="home-card__icon"
|
|
|
|
/>
|
2022-04-24 15:51:03 +00:00
|
|
|
<h3 class="home-card__title">{{ title }}</h3>
|
2022-04-17 13:06:57 +00:00
|
|
|
<p class="home-card__text">{{ description }}</p>
|
|
|
|
</div>
|
|
|
|
{% endmacro home_card %}
|