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

Find us on…

{% if project_github %} GitHub {% 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 bitbucket %} {% endif %} {% if facebook %} {% endif %} {% if google_plus %} {% endif %} {% if linkedin %} {% endif %} {% if twitter %} {% endif %}
{% endif %}
{% endif %}
{% set count=1 %} {% 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 %} {% set width = (12/count)|int %}

Source Files

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

Modules

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

Procedures

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

Derived Types

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