{% 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 %}

{% set col = "col-md-8" if author else "col-md-12"%}

{{ project }}

{{ proj_docs }}
{% if author %}
{% if author_pic %} Developer picture {% endif %}

Developer Info

{{ author }}

{{ 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 %} {% set max_length = max_frontpage_items|int %} {% if count and max_length %} {% set width = (12/count)|int %}

{% if incl_src %}

Source Files

    {%- for src in (project.allfiles|sort(attribute='name'))[:max_length] -%}
  • {{ src | relurl(page_url) }}
  • {%- endfor -%}
{% endif %} {% if project.modules|length > 0 %}

Modules

    {%- for mod in (project.modules|sort(attribute='name'))[:max_length] -%}
  • {{ mod | relurl(page_url) }}
  • {%- endfor -%}
{% endif %} {% if project.procedures|length > 0 %}

Procedures

    {%- for proc in (project.procedures|sort(attribute='name'))[:max_length] -%}
  • {{ proc | relurl(page_url) }}
  • {%- endfor -%}
{% endif %} {% if project.types|length > 0 %}

Derived Types

    {%- for dtype in (project.types|sort(attribute='name'))[:max_length] -%}
  • {{ dtype | relurl(page_url) }}
  • {%- endfor -%}
{% endif %}
{% endif %} {% endblock body %}