Missing helper: "foreach" after adding custom tag page

Hello!

I’ve made some changes on site and moved to scheme with custom-tags.hbs :

{{!< default}}

<div class="content-area">
    <main class="site-main">
        {{#get 'tags' limit='all' include='count.posts' order='count.posts desc'}}
            {{#foreach tags}}
                {{!-- The tag below includes the markup for each tag - partials/tag-card.hbs --}}
                {{> "tag-card"}}
            {{/foreach}}
        {{/get}}
    </main>
</div>

tag-card.hbs contains:

<article class="post-card {{post_class}}{{#unless feature_image}} no-image{{/unless}}">
    {{#if feature_image}}
        <a class="post-card-image-link" href="{{url}}">
            <div class="post-card-image" style="background-image: url({{feature_image}})"></div>
        </a>
    {{/if}}

<div class="post-card-content">
    <a class="post-card-content-link" href="{{url}}">
            <header class="post-card-header">
                <h2 class="post-card-title">{{name}}</h2>
            </header>
            <section class="post-card-excerpt">
                <p>{{description}}</p>
                <p>A collection of {{plural count.posts empty='posts' singular='% post' plural='% posts'}}</p>
            </section>
    </a>
</div>

Now page is showing, but there is no images in card of tag:

Maybe someone can tell me what I’m missing?