{% extends 'base_network.html' %} {% if network_cd %} {% set page_title = collection.title %} {% else %} {% set page_title = 'Networks' %} {% endif %} {% import 'macros/components.html' as components %} {% block content %}
{% if http_code == 200 %} {% if network_cd %}

{{ collection.title }}

{% if collection.description %}

{{ collection.description }}

{% endif %} {{ components.NetworkComponent(network_cd, extent, collection, narrative) }} {% else %}

Select a Network

{% for network in collection %} {% endfor %}
Network Title Description
{{ network.id }} {{ network.title }} {{ network.description }}
{% endif %} {% else %}

Error: HTTP {{ http_code }} -- Network not found.

{% endif %}
{% endblock content %}