2018-06-09 08:40:44 -04:00
|
|
|
{% import "../lib/githubLinks.html" as github -%}
|
2018-02-08 10:00:53 -05:00
|
|
|
{% set comma = joiner(',') %}
|
2018-08-13 05:38:36 -04:00
|
|
|
{% set breadcrumbDelimiter = joiner('>') %}
|
2017-05-02 10:08:49 -04:00
|
|
|
<article>
|
2018-05-23 17:56:05 -04:00
|
|
|
{$ github.githubLinks(doc, versionInfo) $}
|
2018-03-04 15:30:23 -05:00
|
|
|
<div class="breadcrumb">
|
2018-02-08 10:00:53 -05:00
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "BreadcrumbList",
|
|
|
|
"itemListElement": [
|
2018-03-04 15:30:23 -05:00
|
|
|
{%- for crumb in doc.breadCrumbs %}{$ comma() $}
|
|
|
|
{ "@type": "ListItem", "position": {$ loop.index $}, "item": { "@id": "https://angular.io/{$ crumb.path $}", "name": "{$ crumb.text $}" } }{% endfor %}
|
2018-02-08 10:00:53 -05:00
|
|
|
]
|
|
|
|
}
|
2018-03-04 15:30:23 -05:00
|
|
|
</script>
|
2018-08-13 05:38:36 -04:00
|
|
|
{% for crumb in doc.breadCrumbs %}{% if not loop.last %} {$ breadcrumbDelimiter() $} {% if crumb.path %}<a href="{$ crumb.path $}">{$ crumb.text $}</a>{% else %}{$ crumb.text $}{% endif %}{% endif %}{% endfor %}
|
2018-02-08 10:00:53 -05:00
|
|
|
</div>
|
2017-05-02 10:08:49 -04:00
|
|
|
<header class="api-header">
|
2018-03-03 08:13:33 -05:00
|
|
|
<h1>{$ doc.name $}</h1>
|
|
|
|
<label class="api-type-label {$ doc.docType $}">{$ doc.docType $}</label>
|
2018-09-17 12:32:45 -04:00
|
|
|
{% if doc.security !== undefined %}<label class="api-status-label security">security</label>{% endif %}
|
2018-03-11 05:42:49 -04:00
|
|
|
{% if doc.pipeOptions.pure === 'false' %}<label class="api-status-label impure-pipe">impure</label>{% endif %}
|
2017-05-02 10:08:49 -04:00
|
|
|
</header>
|
2018-03-03 08:13:33 -05:00
|
|
|
<aio-toc class="embedded"></aio-toc>
|
2017-05-02 10:08:49 -04:00
|
|
|
|
2018-02-08 10:00:53 -05:00
|
|
|
<div class="api-body">
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</div>
|
2018-02-25 16:56:21 -05:00
|
|
|
</article>
|