--- # default "About" page layout # provides a full width featured image at top # with an auto generated TOC nav on the left and a narrow text block layout: default --- {% if page.about-featured-image or page.heading or page.sub-heading %} {% assign jumboId = page.about-featured-image %} {% if jumboId contains '/' %} {% assign jumboSrc = jumboId | relative_url %} {% else %} {% assign jumboItem = site.data[site.metadata] | where: "objectid", jumboId | first %} {% capture jumboSrc %}{{ jumboItem.object_location | default: jumboItem.image_small | relative_url }}{% endcapture %} {%- endif -%}
{% if page.heading or page.sub-heading %}
{% if page.heading %}

{{ page.heading }}

{% endif %} {% if page.sub-heading %}

{{ page.sub-heading }}

{% endif %}
{% endif %}
{% endif %}
{% unless page.toc == false %}
{% include cb/jekyll-toc.html html=content sanitize=true h_min=1 h_max=3 skip_no_ids=true class="jekyll-toc-list" credits=page.credits %}
{% endunless %}
{{ content }}
{% if page.credits == true %}
{% include cb/credits.html %}
{% endif %}