https://github.com/angular/angular
Raw File
Tip revision: e68258572f601399fedb96f734bdce37f158c8c2 authored by Alex Eagle on 19 May 2015, 18:37:17 UTC
chore(build): record the version of node we expect.
Tip revision: e682585
module.template.html
{% extends 'layout/base.template.html' -%}
{% block body -%}
p.location-badge.
  defined in <a href="https://github.com/angular/angular/tree/master/modules/{$ doc.fileInfo.relativePath $}#L{$ doc.location.start.line+1 $}-L{$ doc.location.end.line+1 $}">{$ doc.fileInfo.relativePath $} (line {$ doc.location.start.line+1 $})</a>

ul
  for page, slug in public.docs[current.path[1]][current.path[2]][current.path[3]][current.path[4]]._data
    if slug != 'index'
      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