Gerben Wierda via ntg-context schrieb am 24.10.2021 um 15:42:
My double-sided layout starts each chapter on a right page with a quote on the opposing left page. I’d like to move the page number of that right page to the footer, but haven’t been able to find how to do this is the documentation. How can I do this?

\definetext
  [chapterfooter] % name
  [footer]        % vertical location
  [pagenumber]    % content

\setuphead
  [chapter]
  [header=empty,
   footer=chapterfooter]

\starttext

\dorecurse{4}
  {\expanded{\chapter{Chapter \recurselevel}}
   \dorecurse{10}{\samplefile{lorem}}}

\stoptext

Wolfgang