Created
September 11, 2025 15:23
-
-
Save aastrong/9a206b470b43d67ad0b2350e57827ba4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div {{ attributes.addClass('card') }}> | |
| <div class="card-img-top"> | |
| {{ card_image }} | |
| </div> | |
| <div class="card-body"> | |
| <h2 class="card-title"> | |
| {{ card_title }} | |
| </h2> | |
| <p class="card-text recipe-body"> | |
| {{ card_body }} | |
| </p> | |
| </div> | |
| <div class="card-body"> | |
| <div class="recipes-time"> | |
| <div class="preptime"> | |
| {{ card_prep_time }} | |
| </div> | |
| <div class="total-time"> | |
| {{ card_total_time }} | |
| </div> | |
| </div> | |
| </div> | |
| <div class="card-body"> | |
| <a href="{{ card_link }}" class="btn btn-primary" aria-label="Go to recipe for recipe">{{ card_link_text }}</a> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment