{% capture titlemaker %} {{ include.titlemaker | default: "page.title" }} {% endcapture %} {% assign include_tags = {{ include.tags | split: "," }} %} {% assign exclude_tags = {{ include.except_tags | split: "," }} %}
{% if include.image != "" and include.image != nil %}
{% endif %}
{{ include.title }}

{{ include.description }}

    {% for page in site.pages %} {% capture included %}{{ page.tags | intersect: include_tags | equals: include_tags }}{% endcapture %} {% capture excluded %}{{ page.tags | intersect: exclude_tags | empty }}{% endcapture %} {% if included contains "true" and excluded contains "true" %}
  • {% eval titlemaker %}
  • {% endif %} {% endfor %}