https://github.com/angular/angular
Raw File
Tip revision: b2a081a19d6d006023b0f79076e9e499441a7810 authored by Andrew Kushnir on 27 January 2022, 00:10:13 UTC
release: cut the v12.2.16 release (#44847)
Tip revision: b2a081a
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