{% if page.name == conf.name %} {% assign ispage = true %} {% if page.category contains 'in-review' %} {% alert info %}This page is marked for review. The following information may be outdated or may no longer apply to the latest Marlin.{% endalert %} {% elsif page.category contains 'wip' %} {% alert info %}This page is under construction and may not have complete or up-to-date information.{% endalert %} {% endif %} {% assign h1 = "h1" %}{% assign h3 = "h3" %} {% if page.label %}{% assign title = page.label %}{% else %}{% assign title = false %}{% endif %} {% if page.since %}{% assign since = page.since %}{% else %}{% assign since = false %}{% endif %} {% if page.tags %}{% assign tags = page.tags | join: ", " %}{% else %}{% assign tags = false %}{% endif %}
{% else %} {% assign ispage = false %} {% assign h1 = "h4" %}{% assign h3 = "h5" %} {% assign title = "#define " | append: conf.name | append: " " | append: conf.type | append: "" %} {% if conf.disabled %}{% assign title = "//" | append: title %}{% endif %} {% if conf.since %}{% assign since = conf.since %} {% elsif parsince %}{% assign since = parsince %} {% else %}{% assign since = false %}{% endif %} {% if conf.tags %}{% assign tags = conf.tags | join: ", " %} {% elsif partags %}{% assign tags = partags | join: ", " %} {% else %}{% assign tags = false %}{% endif %} {%- endif -%}