---
layout: default
---
{% comment %}NOTE: page_id is also defined in default.html{% endcomment %}
{% assign page_id = page.url | split: '/' | last | remove: '.html' %}
{{ page.title }}
{% if page.show-toc != false %}
{% endif %}
{% comment %}
NOTE: link-check-root is not used in any CSS, but must exist once per page as a wrapper
around all content that should have links checked (ie: we don't link check header/footer)
{% endcomment %}
{{ content }}
{% if page.tags != null %}
Tags:
{% assign projectTags = site.data.tags.allowed-tags %}
{% for tag in page.tags %}
{% if projectTags contains tag %}
{{page.tagName}}{{tag}}
{% endif %}
{% endfor %}
{% endif %}