I'd like to override the default page blueprint from a theme. I tried to add the following to themes/mytheme/blueprints/default.yaml:
---yaml
'@extends':
type: default
context: blueprints://pages
form:
fields:
tabs:
type: tabs
fields:
customtab:
type: tab
title: Custom
[...]
TXT
However the tab doesn't show up. Do I need to create a blueprint for every page type to inherit from my modified default blueprint?
---yaml
'@extends':