{% assign page-libs = page-libs | default: layout.page-libs %}
{% assign google-maps-key = site.google-maps-dev-key %}
{% if env != 'development' %}
{% assign google-maps-key = site.google-maps-key %}
{% endif %}
{% 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 %}
{% comment %}
{% for script in site.captured_global.scripts %}
{{ script }}
{% endfor %}
{% for script in site.captured_once.scripts %}
{{ script }}
{% endfor %}
{% assign libs = page.libs | default: layout.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 %}
{% endcomment %}