Applying a blueprint to a partial

I created a blueprint for my footer, a partial included in my base.html like this
{% block footer %} {% include ‘partials/footer.html.twig’
with {‘page’: page.find(’/footer’, true)} %} {% endblock %}
and have been unable to get grav admin to pick it up. I tried placing it in the themes/blueprints folder, in themes/blueprints/modular, in themes/blueprints/partials and none of those worked. Here is a copy of my blueprint, named footer.yaml
title: Footer
@extends’: default

form:
  fields:
    tabs:
      fields:
        footer:
          type: tab
          title: Footer
          fields:
            header.footer:
              name: footer
              type: list
              label: Footer

              fields:
                .icon:
                  type: iconpicker
                  label: Icon
                .colorpicker:
                  type: colorpicker
                  label: Icon Color
                .url:
                  type: text
                  label: Link

Self solved: the footer.md page’s template had to be set to footer

1 Like