{% assign google-maps-key = site.googleMapsDevKey -%}
{% if environment != 'development' -%}
{% assign google-maps-key = site.googleMapsKey -%}
{% endif -%}
{% if page-libs -%}
{% for lib in libs.js -%}
{% if page-libs contains lib[0] or libs.global-libs contains lib[0] -%}
{% for file in lib[1] -%}
{% endfor -%}
{% endif -%}
{% endfor -%}
{% endif -%}
{% for script in site.captured_global.scripts %}
{{ script }}
{% endfor %}
{% for script in site.captured_once.scripts %}
{{ script }}
{% endfor %}
{% assign libs = page-libs | default: layout.page-libs %}
{% for lib in libs.js-files %}
{% if libs contains lib[0] or libs.global-libs contains lib[0] %}
{% for file in lib[1] %}
{% assign filename = 'js/' | append: file | append: '.html' %}
{% include "{{ filename }}" %}
{% endfor %}
{% endif %}
{% endfor %}