{% extends "base.template.html" %} {% block content %}

{% if doc.title %}{$ doc.title | marked $}{% else %}{$ doc.name | code $}{% endif %}

Installation

{% if doc.installation or doc.installation == '' %} {$ doc.installation | marked $} {% else %}

First, get the file:

where X.Y.Z is the AngularJS version you are running.

Then, include {$ doc.packageFile | code $} in your HTML:

{% code %} {% endcode %}

Finally, load the module in your application by adding it as a dependent module:

{% code %} angular.module('app', ['{$ doc.name $}']); {% endcode %}

With that you're ready to get started!

{% endif %} {$ doc.description | marked $} {% if doc.knownIssueDocs %}

Known Issues

{% for issueDoc in doc.knownIssueDocs -%} {% endfor -%}
NameDescription
{$ issueDoc.id | link(issueDoc.name, issueDoc) $} {% for issue in issueDoc.knownIssues -%} {$ issue | marked $} {% if not loop.last %}
{% endif %} {% endfor -%}
{% endif %} {% if doc.componentGroups.length %}

Module Components

{% for componentGroup in doc.componentGroups %}

{$ componentGroup.groupType | title $}

{% for component in componentGroup.components %} {% endfor %}
Name Description
{$ component.id | link(component.name, component) $} {$ component.description | firstParagraph | marked $}
{% endfor %}
{% endif %} {% if doc.usage %}

Usage

{$ doc.usage | marked $} {% endif %} {% endblock %}