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