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

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

{$ doc.description | marked $} {% if doc.name != 'ng' and doc.name != 'auto' %} {% block installation %}{% endblock %} {% endif %} {% if doc.componentGroups and doc.componentGroups.length > 0 %}

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

Installation

First include {$ doc.packageName| code $} javascript file in your HTML:

You can download this file from the following places:

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

{% code %} angular.module('app', [{% for require in doc.requires %}'{$ require $}', {% endfor %}'{$ doc.name $}']); {% endcode %}

With that you're ready to get started!

{% endblock %}