Viewing File: /usr/local/cpanel/base/frontend/jupiter/solutions/solutions_list/solution_card.component.tt

<section class="cp-card">
    <div class="cp-card__body">
        <figure class="cp-card__image-wrapper">
            <!-- NOTE: Because we are using inline svg code instead of an img tag, we can
            use a div to create the image alt text for screenreaders. -->
            <div role="img" aria-label="[% image_alt %]">
            [% PROCESS "solutions/solutions_list/$image" %]
            </div>
        </figure>
        <span class="cp-card__title">[% title %]</span>
        <p class="cp-card__description">[% description %]</p>
    </div>
    <div class="cp-card__footer d-flex justify-content-end">
        <a href="[% link_href %]"  target="[% link_target %]" class="cp-btn cp-btn--secondary">
            <span class="button-content">
                [% IF link_icon %]
                    <cp-icon name="[% link_icon %]" size="lg" class="button-icon"></cp-icon>
                [% END %]
                [% link_text %]
            </span>
        </a>
    </div>
</section>
Back to Directory File Manager