Table of Contents
{% if page.group == "ext-best-practices" %}

Extension Best Practices

{% elsif page.group == "compman" %}

Component Manager and System Upgrade Guide

{% elsif page.group == "coding-standards" %}

Coding Standards

{% elsif page.group == "rest" %}

REST API Reference

{% elsif page.group == "contributor" %}

Contributor Guide

{% elsif page.group == "get-started" %}

Getting Started with Web APIs

{% elsif page.group == "pattern" %}

Admin Pattern Library

{% elsif page.group == "mtf-guide" %}

Testing Framework Guide

{% elsif page.group == "migration" %}

Migration Guide

{% elsif page.group == "release-notes" %}

Release Notes

{% elsif page.group == "extension-dev-guide" %}

PHP Developer Guide

{% elsif page.group == "arch-guide" %}

Architecture Guide

{% elsif page.group == "fedg" %}

Frontend Developer Guide

{% elsif page.group == "UI Library" %}

UI Components

{% elsif page.group == "jsdg" %}

JavaScript Developer Guide

{% elsif page.group == "install2" %}

Installation Guide

{% elsif page.group == "install_cli" %}

Installation Guide
Part 2: Installing

{% elsif page.group == "install_hosted" %}

Newbie Installation Guide

{% elsif page.group == "install_pre" %}

Installation Guide
Part 1: Getting started

{% elsif page.group == "install" %}

Installation Guide
Part 3: Post-installation

{% elsif page.group == "install_wiz" %}

Installation Guide
Part 2: Installing

{% elsif page.group == "install_trouble" %}

Installation Guide
Part 3: Post-installation

{% elsif page.group == "config-guide" %}

Configuration Guide

{% elsif page.group == "cloud" %}

Magento Enterprise Cloud Guide

{% endif %}
    {% assign categories = site.articles | group_by:"group" %} {% for node in categories %} {% if node.name == page.group %} {% assign subcategories = node.items | group_by:"subgroup" %} {% assign subcategories_sorted = subcategories | sort: "name" %} {% for subcats in subcategories_sorted %} {% assign articles_sorted = subcats.items | sort: "menu_order" | where:"menu_node", null %} {% if subcats.name != "" %} {% assign parents = subcats.items | where:"menu_node","parent" %} {% assign n = 0 %} {% for parent in parents %}
  • {% if parent.menu_title %}{{parent.menu_title}}{% else %}{{parent.title}}{% endif %}
  • {% assign n = 1 %} {% endfor %} {% if n == 0 %}
  • {{ subcats.name }}
  • {% endif %} {% for article in articles_sorted %} {% if article.level3_menu_node == "level3parent" %}
  • {% if article.menu_title %}{{article.menu_title}}{% else %}{{article.title}}{% endif %} {% elsif article.level3_menu_node == "level3child" %}
  • {% if article.menu_title %}{{article.menu_title}}{% else %}{{article.title}}{% endif %} {% elsif article.externalURL %}
  • {% if article.menu_title %}{{article.menu_title}}{% else %}{{article.title}}{% endif %}
  • {% else %}
  • {% if article.menu_title %}{{article.menu_title}}{% else %}{{article.title}}{% endif %}
  • {% endif %} {% endfor %} {% else %} {% for article in articles_sorted %}
  • {% if article.menu_title %}{{article.menu_title}}{% else %}{{article.title}}{% endif %}
  • {% endfor %} {% endif %} {% endfor %} {% endif %} {% endfor %}