How can I put fields above the original Content

I’d like to extend the content page of grav pages, adding two fields above the title and content fields. Adding under all fields works without problems.

edit: Im talking about the fields in grav admin, if that was unclear. It’s not about the theme / templates :wink:

You can use the ordering attribute, example:

title: newblueprint
'@extends':
    type: default
    context: blueprints://pages

form:
  fields:
    tabs:
      type: tabs
      active: 1

      fields:
        content:
          fields:
            header.an_example_text_field:
              type: text
              ordering@: 0
              label: Add a number
              default: 5
              validate:
                required: true
                type: int
1 Like

Thanks, I will try that later.

Works perfect (except that 0 seems to be reserved for the title field)