{% assign url = page.url | remove:'index.html' %} {% assign curSection = page.section %} {% assign curExtra = page.extraSections %} {% assign sorted_pages = site.pages | sort:"pageOrder" %}

No pages match.

MockServer
  • What is MockServer
  • Why use MockServer
★ Popular
    {% for item in site.data.nav.featured %}
  • {{ item.title }}
  • {% endfor %}
{% for sec in site.data.nav.sections %} {% assign isCurrent = false %} {% if curSection == sec.name %}{% assign isCurrent = true %}{% endif %} {% if curExtra contains sec.name %}{% assign isCurrent = true %}{% endif %}
    {% for page in sorted_pages %} {% if page.subsection %} {% assign inSection = false %} {% if page.section == sec.name %}{% assign inSection = true %}{% endif %} {% if page.extraSections contains sec.name %}{% assign inSection = true %}{% endif %} {% if inSection %} {% if page.shortTitle %}{% assign title = page.shortTitle %}{% else %}{% assign title = page.title %}{% endif %}
  • {{ title }}
  • {% endif %} {% endif %} {% endfor %} {% for link in sec.extraLinks %}
  • {{ link.title }}
  • {% endfor %}
{% endfor %}