How to produce a title for a table of content

I have constructed a table of content which runs for more than a single page. It needs a title, which should become a header for the following page but this title should not be listed in the table of content.

I have

#let frontmatter(meta) = {
  "FRONT"
  heading(level:3, numbering:none)[Inhaltsverzeichnis]
  block( inset: (left: 2cm, right: 1cm))[  
    #woToc(meta)[
          #outline(title:none)]    
      ]
  "outline_done
  "                                                 
}

which produces a title but the title is included in the ToC, the title is also numbered as 0 (which is probably caused by the show heading function). What is the correct combination of level and numbering?

I believe this is a duplicate of How to Include the Table of Contents in the Outline (Table of Contents)? - #4 by bluss where you should find what you are looking for.

thank you for the pointer. I was missing the “outlined” parameter of the heading function, which must be set to false to avoid that the title is included in the ToC.

Duplicate of

Thanks for pointing it out @vmartel08! @Andrew_Frank, feel free to flag your own post/message me if you think this is an error.