https://github.com/angular/angular
Raw File
Tip revision: dda130b04012e4657097030caf9771bdbbead066 authored by Jeff Cross on 24 June 2015, 07:27:07 UTC
refactor(http): remove default settings from `RequestOptions` constructor
Tip revision: dda130b
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'
      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