.. include:: ../Includes.txt .. _examples_pages: ============ Rendering a page ============ Render all content-elements from a page ------------ As a variation of the example :ref:`how to render a single content element `, we will now render all content-elements that were placed in a certain column ("colPos") of a page. .. code-block:: php column( $colPos, $pageUid ); return ['html'=>$html]; } } Here are some examples of how to retrieve the rendered content for a given page-uid and colPos: .. code-block:: php // GET all content-elements from page 123 and column 0 https://www.mysite.com/api/content/column/123/0 // GET all content-elements from page 99 and column 110 https://www.mysite.com/api/content/column/99/110