https://github.com/angular/angular
Raw File
Tip revision: caecd1889b4bc06773c5f82ffcec82d7f88389a5 authored by Jessica Janiuk on 01 September 2021, 18:30:13 UTC
release: cut the v12.2.4 release (#43308)
Tip revision: caecd18
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-2021.
</p>
<p>
  Code licensed under an <a href="license" title="License text">MIT-style License</a>.
  Documentation licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
</p>
<p>
  Version {{versionInfo?.full}}.
</p>
back to top