> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: $w ## Namespace: repeater ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/velo-only-apis/$w/repeater/introduction.md ## Article Content: # Introduction Repeaters provide a way for you to add repeating content to a page. Repeaters consist of repeating items, each with the same layout but different data. For example, the repeater below contains 3 items, each with the same layout. There's 1 image on the left and 2 text elements on the right. However, the data in each item is different. That is, the actual images and text values are different in each repeated item. ![Repeater example](https://wixmp-833713b177cebf373f611808.wixmp.com/images/velo-images/media_repeater.png "Repeater example") Populate your repeater with data using one of the following: + Connect each element contained within a [repeater's items](https://dev.wix.com/docs/velo/velo-only-apis/$w/repeater/create-and-access-repeated-item-data.md) to a dataset in the editor. Click `Connect to CMS` and select your dataset. You only need to connect the elements in the first item and the connection automatically applies to all repeated items. + Use the [`data`](#data) property to pass an array of items to the repeater. This data comes from your Wix site's collections or a third-party database. Then use [`forEachItem()`](#forEachItem), [`forItems()`](#forItems), and [`onItemReady()`](#onItemReady) methods to display the data in each repeated item. Get hands-on experience with repeaters on our [Hello Repeaters](https://www.wix.com/velo/example/hello-repeaters) example page. > Learn more about repeaters in [Getting Started](/getting-started/working-with-repeaters) and on [Wix Learn](https://www.wix.com/learn/online-course/coding-with-velo/velo-repeaters).