https://github.com/angular/angular
Raw File
Tip revision: 5f7d4faa8872f784f895248dcae795cdbaf58d8a authored by yjbanov on 18 August 2015, 19:21:09 UTC
fix(docs): export bootstrap in core.ts but not in core.dart
Tip revision: 5f7d4fa
module.template.html
{% include "lib/githubLinks.html" -%}
{% extends 'layout/base.template.html' -%}
{% block body -%}
p.location-badge.
  defined in {$ githubViewLink(doc) $}

ul
  for page, slug in public.docs[current.path[1]][current.path[2]][current.path[3]][current.path[4]]._data
    if slug != 'index'
      - var url = "/docs/" + current.path[1] + "/" + current.path[2] + "/" + current.path[3] + "/" + current.path[4] + "/" + slug + ".html"

      li.c8
        != partial("../../../../../_includes/_hover-card", {name: page.title, url: url })

{% endblock %}
back to top