{% set row_class = 'row mb-0' %} {% set col1_class = 'col-sm-3 col-md-2' %} {% set col2_class = 'col-sm-9 col-md-10' %}
{{ package.highest.name }} {% if package.abandoned %}

Abandoned! Package is abandoned, you should avoid using it. {% if package.replacement %} Use {{ package.replacement }} instead. {% else %} No replacement was suggested. {% endif %}

{% endif %}
{% if package.highest.description %}

{{ package.highest.description }}

{% endif %}
{% if package.highest.type %}
Type
{{ package.highest.type }}
{% endif %} {% if package.highest.keywords %}
Keywords
{% for keyword in package.highest.keywords|sort %} {{ keyword }} {% endfor %}
{% endif %} {% if package.highest.homepage %}
Homepage
{{ package.highest.homepage }}
{% endif %} {% if package.highest.license %}
License
{{ package.highest.license|join(', ') }}
{% endif %} {% if package.highest.authors %}
Authors
{% for author in package.highest.authors %} {%- if author.homepage -%} {{ author.name }} {%- else -%} {{ author.name }} {%- endif -%} {%- if not loop.last -%}, {% endif -%} {% endfor %}
{% endif %} {% if package.highest.support %}
Support
    {% for support_type, support_url in package.highest.support %}
  • {{ support_type|capitalize }}: {{ support_url }}
  • {% endfor %}
{% endif %}
Releases
{% for version in package.versions %} {% set branch_alias = attribute(version.extra['branch-alias'], version.prettyVersion) %} {%- if branch_alias -%} {% set branch_alias = ", branch-alias: " ~ branch_alias %} {%- endif -%} {%- if package.highest.type == 'metapackage' -%} {{ version.prettyVersion }} {%- elseif version.distType -%} {{ version.prettyVersion }} {%- elseif version.sourceUrl matches '#^https?:\/\/#' -%} {{ version.prettyVersion }} {%- else -%} {{ version.prettyVersion }} {%- endif -%} {% endfor %}
{% set package_dependencies = attribute(dependencies, name) %} {% if package_dependencies and package_dependencies|length %}
Required by
{% endif %}