https://github.com/angular/angular
Raw File
Tip revision: 7edc5e96f373d7c74092b92874fa6c69b308d8dc authored by Jason Aden on 17 May 2017, 22:44:25 UTC
docs: add changelog for 4.1.3
Tip revision: 7edc5e9
footer.component.html

  <div class="grid-fluid">
    <div class="footer-block" *ngFor="let node of nodes">
      <h3>{{node.title}}</h3>
      <ul>
        <li *ngFor="let item of node.children">
          <a class="link" [href]="item.url"
            [title]="item.tooltip || item.title">{{ item.title }}</a>
        </li>
      </ul>
    </div>
  </div>

  <p>
    Powered by Google ©2010-2017.
    Code licensed under an <a href="license" title="License text" >MIT-style License</a>.
    Documentation licensed under
    <a href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
  </p>
  <p>
    Version {{versionInfo?.full}}.
  </p>
  <!-- TODO: twitter widget (but only on pages that use twitter) -->
back to top