{% set groupeddemos = demos | groupby('primaryElementName') %} {% if demo.title %} {% set title = demo.title + ' | ' + options.site.title %} {% else %} {% set title = options.site.title %} {% endif %} {% if options.sourceControlURLPrefix %} {% if options.sourceControlURLPrefix.toLowerCase().includes('github') %} {% set repoHost = 'GitHub' %} {% elseif options.sourceControlURLPrefix.toLowerCase().includes('bitbucket') %} {% set repoHost = 'BitBucket' %} {% elseif options.sourceControlURLPrefix.toLowerCase().includes('gitlab') %} {% set repoHost = 'GitLab' %} {% else %} {% set repoHost = '' %} {% endif %} {% endif %} {{ title }} {% for sheet in options.site.stylesheets %} {% endfor %}
{{ title }} {% if options.sourceControlURLPrefix %}Contribute on {{ repoHost }}{% endif %} {% if repoHost === 'GitHub' %} GitHub {% elseif repoHost === 'GitLab' %} GitLab {% elseif repoHost === 'BitBucket' %} BitBucket {% elseif repoHost | trim === '' %} Git Repository {% endif %}
{% if templateContent %}
{{ templateContent | safe }}
{% else %}
{% for primary, group in groupeddemos %} {% set first = group['0'] %}

{{ first.title }}

{{ primary }}
    {% for d in group %}{% if not loop.first %}
  • {{ d.title }}
  • {% endif %}{% endfor %}
{% endfor %}
{% endif %}