{% extends "layout.html" %} {% set title = 'Global Module Index' %} {% block body %}

Global Module Index

Frequently Accessed Modules

{% set collen = len(freqentries) // 3 %} {% if collen == 0 %}{% set collen = 1 %}{% endif %} {% set numcol = 1 %} {% for modname in freqentries %} {{ modname|e }} {% if platform %} ({{ platform }}){% endif %}
{% if numcol < 3 and loop.index % collen == 0 %} {% set numcol = numcol+1 %}
{% endif %} {% endfor %}

All Modules

Some module names are followed by an annotation indicating what platform they are available on.

{# XXX: add "show synopsis" link #}
{% set collen = len(modindexentries) // 3 %} {% set numcol = 1 %} {% for modname, (filename, synopsis, platform) in modindexentries %} {{ modname|e }} {% if platform %} ({{ platform }}){% endif %}
{% if numcol < 3 and loop.index % collen == 0 %} {% set numcol = numcol+1 %}
{% endif %} {% endfor %}
{% endblock %}