---
title: Advanced Paged
description: This page mix and match some advanced concepts
data:
title: Locations
locations:
- Charlotte
- Concord
- North Carolina
---
{{ page.title }}
{{ page.description }}
Page level data
{{ page.data.title }}
{% for loc in page.data.locations %}
- {{ loc }}
{% endfor %}
Data from data/cars.json
{{ data.cars.title }}
{% for car in data.cars.my_list %}
- {{ car }}
{% endfor %}
Include Partials
{% include 'partials/my_table.html' %}
{{ Kolibri.page_link('index', text='Home') }}