Skip to content

Commit

Permalink
#61 fixes directory paths on cards
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesKhong committed Mar 9, 2024
1 parent 9e8d8ec commit f60ab2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion views/molecules/cards/card-lg.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{# Tag #}
{% if btn_tag_text %}
<div class="mb-sm">
{% include "btns/btn-tag.twig" with {
{% include "atoms/btns/btn-tag.twig" with {
text: btn_tag_text
} %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion views/molecules/cards/card-listing.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{# Tag #}
{% if btn_tag_text %}
<div class="mb-2xs">
{% include "btns/btn-tag.twig" with {
{% include "atoms/btns/btn-tag.twig" with {
text: btn_tag_text
} %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion views/molecules/cards/card-xl.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
{# Tag #}
{% if btn_tag_text %}
<div class="mb-sm">
{% include "btns/btn-tag.twig" with {
{% include "atoms/btns/btn-tag.twig" with {
text: btn_tag_text
} %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion views/molecules/cards/example--card.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<div class="ts-grid-col-{{ number_of_columns }} my-block">
{% for i in 1..number_of_cards %}
{% embed "/cards/card-" ~ size ~ ".html.twig" %}
{% embed "molecules/cards/card-" ~ size ~ ".html.twig" %}
{% set image_sample = 1 %}
{% block card_image %}
<img class="{{ classes }}" src="{{site.theme.uri}}/assets/images/default-dark.png" alt="Placeholder image">
Expand Down

0 comments on commit f60ab2f

Please sign in to comment.