{% extends "base.html" %} {% block body %}
{{ summary }} {% if project_github or project_bitbucket or project_gitlab or project_sourceforge or project_website %}

Find us on…

{% if project_github %} GitHub {% endif %} {% if project_gitlab %} The Web {% endif %} {% if project_bitbucket %} Bitbucket {% endif %} {% if project_sourceforge %} Sourceforge {% endif %} {% if project_website %} The Web {% endif %} {% endif %} {% if project_download %} Download the Source {% endif %}

{% if author %}
{% else %}
{% endif %}

{{ project }}

{{ proj_docs }}
{% if author %}

Developer Info

{{ author }}

{% if author_pic %} Developer picture {% endif %} {{ author_description }} {% if github or bitbucket or facebook or twitter or google_plus or linkedin or email or website %}
{% if email %} {% endif %} {% if website %} {% endif %} {% if github %} {% endif %} {% if gitlab %} {% endif %} {% if bitbucket %} {% endif %} {% if facebook %} {% endif %} {% if google_plus %} {% endif %} {% if linkedin %} {% endif %} {% if twitter %} {% endif %}
{% endif %}
{% endif %}
{% set count=0 %} {% if incl_src %}{% set count = count + 1 %}{% endif %} {% if project.modules|length > 0 %}{% set count = count + 1 %}{% endif %} {% if project.procedures|length > 0 %}{% set count = count + 1 %}{% endif %} {% if project.types|length > 0 %}{% set count = count + 1 %}{% endif %} {% if count != 0 %} {% set width = (12/count)|int %} {% set max_length = max_frontpage_items|int %}
{% if incl_src %}

Source Files

    {%- for src in (project.allfiles|sort(attribute='name'))[:max_length] -%} {% if loop.index0 < max_length %}
  • {{ src }}
  • {% elif loop.index0 == max_length %}
  • All source files…
  • {%- endif -%} {%- endfor -%}
{% endif %} {% if project.modules|length > 0 %}

Modules

    {%- for mod in (project.modules|sort(attribute='name'))[:max_length] -%} {% if loop.index0 < max_length %}
  • {{ mod }}
  • {% elif loop.index0 == max_length %}
  • All modules…
  • {%- endif -%} {%- endfor -%}
{% endif %} {% if project.procedures|length > 0 %}

Procedures

    {%- for proc in (project.procedures|sort(attribute='name'))[:max_length] -%} {% if loop.index0 < max_length %}
  • {{ proc }}
  • {% elif loop.index0 == max_length %}
  • All procedures…
  • {%- endif -%} {%- endfor -%}
{% endif %} {% if project.types|length > 0 %}

Derived Types

    {%- for dtype in (project.types|sort(attribute='name'))[:max_length] -%} {% if loop.index0 < max_length %}
  • {{ dtype }}
  • {% elif loop.index0 == max_length %}
  • All derived types…
  • {%- endif -%} {%- endfor -%}
{% endif %}
{% endif %} {% endblock body %}