{% if buildsite and not baseurl %}
{% set baseurl = "../" %}
{% endif %}
{% include "head.html" %}
{% include "cardindex_body.html" %}
{% set filterable = True %}
{% include "header.html" %}
{% if buildsite %}{% endif %}
{% include "servicetoc.html" %}
{% if buildsite %}
{% include "filters.html" %}
{% endif %}
{% include "intro.html" %}
{% for group, explicit, resources in index %}
{% for res, label in resources %}
{% for _, targetres in get_triples(g, res, CODEMETA.isSourceCodeOf, abcsort=True) %}
{% if ((targetres, RDF.type, SDO.WebApplication) in g or
(targetres, RDF.type, SDO.WebSite) in g or
(targetres, RDF.type, SDO.NotebookApplication) in g or
(targetres, RDF.type, SDO.WebPage) in g) and (targetres, SDO.url,None) in g %}
{% include 'card_service.html' %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}