https://github.com/angular/angular
Raw File
Tip revision: a3f3082bf0dfebad30158dff23f9ad19990518cc authored by atscott on 19 August 2020, 16:05:11 UTC
release: cut the v10.0.11 release
Tip revision: a3f3082
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>
  Super-powered by Google ©2010-2020.
  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>
back to top