Help with gscan error

Does anyone know about this error:

  • Error: Not all page features are being used

Affected Files: page.hbs

thanks.

That sounds like your theme doesn’t support the @page.show_title_and_feature_image feature.

You can read more about it here:

Basically gscan expects that you have the following check in your page template:

{{#match @page.show_title_and_feature_image}}
...content...
{{/match}}

Thank you, I’ll read about it.

That’s my code on page.hbs

{{!< default}}

{{#post}}


  {{#if feature_image}}
  <figure class="po-page-image">
    <img src="{{img_url feature_image size="xl"}}" alt="{{title}}">

    {{#if feature_image_caption}}
    <figcaption>{{feature_image_caption}}</figcaption>
    {{/if}}
  </figure>
  {{/if}}

<div class="po-page {{#if feature_image}}po-has-image{{/if}}">

  <h1 class="po-page-title">{{title}}</h1>

  {{#if custom_excerpt}}
  <p class="po-page-excerpt">{{custom_excerpt}}</p>
  {{/if}}

  {{content}}

</div>

{{/post}}

Everything is running ok now.
Thank you.