{% if page_paths %}
{% for path in page_paths %}
{% assign my_page = site.pages | where: "path", path | first %}
{% if my_page.title %}
{% unless my_page.url contains site.ampdir %}
{{ my_page.title | escape }}
{% endunless %}
{% endif %}
{% endfor %}
{% endif %}