---
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
{% for car in data.cars.my_list %}
- {{ car }}
{% endfor %}
Include from content
{% include 'content/my_table.html' %}
{% include 'content/hello-world.md' %}
{{ page_link('index', text='Home') }}